yig/docker-compose.yml

11 lines
207 B
YAML
Raw Normal View History

2024-06-21 03:02:03 -05:00
services:
web:
build: ./franklincce
command: python manage.py runserver 0.0.0.0:8000
2024-06-21 03:02:03 -05:00
volumes:
- ./franklincce/:/usr/src/app/
2024-06-21 03:02:03 -05:00
ports:
- 8000:8000
env_file:
- ./.env.dev