Skip to content

Instantly share code, notes, and snippets.

@kayode-adechinan
Created August 6, 2019 17:19
Show Gist options
  • Save kayode-adechinan/102d27b30e6d446611a4304367d447e4 to your computer and use it in GitHub Desktop.
Save kayode-adechinan/102d27b30e6d446611a4304367d447e4 to your computer and use it in GitHub Desktop.
simple docker-compose for django
version: '3.7'
services:
db:
image: postgres:10.1-alpine
volumes:
- postgres_data:/var/lib/postgresql/data/
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- 8000:8000
depends_on:
- db
volumes:
postgres_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment