Update docker-compose.yml
Browse files- docker-compose.yml +5 -4
docker-compose.yml
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
version: "3.9"
|
|
|
2 |
services:
|
3 |
-
|
4 |
build: .
|
|
|
5 |
ports:
|
6 |
-
- "
|
7 |
-
env_file:
|
8 |
-
- .env
|
9 |
restart: unless-stopped
|
|
|
|
1 |
version: "3.9"
|
2 |
+
|
3 |
services:
|
4 |
+
flask:
|
5 |
build: .
|
6 |
+
env_file: .env
|
7 |
ports:
|
8 |
+
- "8080:8080"
|
|
|
|
|
9 |
restart: unless-stopped
|
10 |
+
command: ["python", "app.py"]
|