Skip to content

Instantly share code, notes, and snippets.

@sondr3
Created March 16, 2023 11:42
Show Gist options
  • Save sondr3/76085021d62a8e1059ca6eb2721f41f2 to your computer and use it in GitHub Desktop.
Save sondr3/76085021d62a8e1059ca6eb2721f41f2 to your computer and use it in GitHub Desktop.
POSTGRES_DB=pantry_dev
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST=localhost
version: "3.9"
services:
dev_db:
container_name: pantry_db
image: postgres:15.1
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- 5432:5432
env_file: .env
volumes:
postgres_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment