Skip to content

Instantly share code, notes, and snippets.

@berk-karaal
Created August 14, 2024 15:59
Show Gist options
  • Select an option

  • Save berk-karaal/a03895fa54f2bc94f46b815664021fd6 to your computer and use it in GitHub Desktop.

Select an option

Save berk-karaal/a03895fa54f2bc94f46b815664021fd6 to your computer and use it in GitHub Desktop.
postgres docker compose
services:
postgres:
image: postgres:16-alpine
volumes:
- ./var/db:/var/lib/postgresql/data
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=test_db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment