emotions-recognition / docker-compose.yaml
ev6's picture
Update docker-compose.yaml
9d72e0b verified
raw
history blame
335 Bytes
version: "3.8"
services:
web:
build:
context: .
dockerfile: Dockerfile
container_name: emotion_recognition_app
ports:
- "8000:8000"
volumes:
- .:/app
working_dir: /app
environment:
- DJANGO_SETTINGS_MODULE=django_app.settings
command: python manage.py runserver 0.0.0.0:8000