recipes_api/docker-compose.yml
2023-10-04 00:07:55 -03:00

13 lines
208 B
YAML

services:
app:
build:
context: .
args:
- DEV=true
ports:
- "8000:8000"
volumes:
- ./app:/app
command: >
sh -c "python manage.py runserver 0.0.0.0:8000"