mgbam commited on
Commit
a09aae2
·
verified ·
1 Parent(s): 48e1f9a

Update docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +5 -4
docker-compose.yml CHANGED
@@ -1,9 +1,10 @@
1
  version: "3.9"
 
2
  services:
3
- app:
4
  build: .
 
5
  ports:
6
- - "8501:8501"
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"]