Spaces:
Sleeping
Sleeping
Update docker-compose.yaml
Browse files- docker-compose.yaml +15 -14
docker-compose.yaml
CHANGED
@@ -1,15 +1,16 @@
|
|
1 |
-
version: "3.8"
|
2 |
-
|
3 |
-
services:
|
4 |
-
web:
|
5 |
-
build:
|
6 |
-
context: .
|
7 |
-
dockerfile: Dockerfile
|
8 |
-
container_name: emotion_recognition_app
|
9 |
-
ports:
|
10 |
-
- "8000:8000"
|
11 |
-
volumes:
|
12 |
-
- .:/app
|
13 |
-
|
14 |
-
|
|
|
15 |
command: python manage.py runserver 0.0.0.0:8000
|
|
|
1 |
+
version: "3.8"
|
2 |
+
|
3 |
+
services:
|
4 |
+
web:
|
5 |
+
build:
|
6 |
+
context: .
|
7 |
+
dockerfile: Dockerfile
|
8 |
+
container_name: emotion_recognition_app
|
9 |
+
ports:
|
10 |
+
- "8000:8000"
|
11 |
+
volumes:
|
12 |
+
- .:/app
|
13 |
+
working_dir: /app
|
14 |
+
environment:
|
15 |
+
- DJANGO_SETTINGS_MODULE=django_app.settings
|
16 |
command: python manage.py runserver 0.0.0.0:8000
|