11 lines
191 B
YAML
11 lines
191 B
YAML
version: '3'
|
|
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- FLASK_APP=app
|
|
command: flask run --host=0.0.0.0 --port=5000
|
|
volumes:
|
|
- .:/app
|