Files
filewizard/docker-compose.yml
2025-09-17 18:52:18 +00:00

11 lines
192 B
YAML

version: "3.9"
services:
web:
build: .
ports:
- "5000:5000"
volumes:
- .:/app # optional: mount code for live changes
environment:
- FLASK_ENV=development