docker_practice/compose/demo/django/docker-compose.yml

14 lines
184 B
Go
Raw Normal View History

2017-11-23 07:48:52 +00:00
version: "3"
services:
db:
image: postgres
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
2017-11-23 07:48:52 +00:00
volumes:
- .:/code
ports:
- "8000:8000"