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