File size: 335 Bytes
9d72e0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1bb2cab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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