Skip to content

Instantly share code, notes, and snippets.

@sairajchouhan
Created May 22, 2023 04:19
Show Gist options
  • Save sairajchouhan/4f557e5161c1b909dacf4979596ee2be to your computer and use it in GitHub Desktop.
Save sairajchouhan/4f557e5161c1b909dacf4979596ee2be to your computer and use it in GitHub Desktop.
version: '3.9'
services:
db:
image: postgres:latest
container_name: minibyte_postgres_dev
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_USER=minibyte
- POSTGRES_PASSWORD=minibyte_password
- POSTGRES_DB=minibyte
volumes:
- postgres-data:/var/lib/postgresql/data/
volumes:
postgres-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment