Skip to content

Instantly share code, notes, and snippets.

@aalfiann
Created March 22, 2025 17:01
Show Gist options
  • Save aalfiann/ae06c39036f086903cf32f9296db2784 to your computer and use it in GitHub Desktop.
Save aalfiann/ae06c39036f086903cf32f9296db2784 to your computer and use it in GitHub Desktop.
PostgreSQL Docker Compose
services:
postgres:
image: postgres:17
container_name: postgres17
restart: unless-stopped
ports:
- "6543:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: w3lCome_[p0stgre-234]_
POSTGRES_DB: postgres
volumes:
- ./postgres-data:/var/lib/postgresql/data
- ./postgres-init:/docker-entrypoint-initdb.d
volumes:
postgres-data:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment