soiz1 commited on
Commit
8b7bef7
·
verified ·
1 Parent(s): 826f16c

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +10 -0
docker-compose.yml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ version: "3.9"
2
+
3
+ services:
4
+ app:
5
+ build: .
6
+ ports:
7
+ - "9982:9982"
8
+ environment:
9
+ - FLASK_APP=app/portable.py
10
+ command: flask run --host=0.0.0.0 --port=9982