herreweb_site/docker-compose.yml

10 lines
210 B
YAML
Raw Permalink Normal View History

2023-12-24 21:01:34 +00:00
version: '3.8'
services:
web:
build:
context: .
target: dev # specify the build target if needed
ports:
2023-12-29 21:37:15 +00:00
- "5002:5002"
command: ["flask", "run", "--host=0.0.0.0", "--port=5002"]