Skip to content

Instantly share code, notes, and snippets.

@qwexvf
Created September 19, 2018 07:35
Show Gist options
  • Save qwexvf/3daf478d1c1cb0ee92a93e7676a310d5 to your computer and use it in GitHub Desktop.
Save qwexvf/3daf478d1c1cb0ee92a93e7676a310d5 to your computer and use it in GitHub Desktop.
simple docker-compose postgresql
version: '3'
services:
datastore:
image: busybox
volumes:
- db_data:/var/lib/psql
postgresql:
image: postgres
environment:
POSTGRES_USER: username
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/psql
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment