Files
dss.api/docker-compose.yml
2015-07-23 18:23:43 +00:00

12 lines
183 B
YAML

db:
image: postgres
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
links:
- db