Files
kennethreitz.org/docker-compose.yml
T
Kenneth Reitz f04e27a09b test
2025-08-23 23:58:56 -04:00

14 lines
263 B
YAML

version: '3.8'
services:
web:
build: .
ports:
- "8000:8000"
volumes:
- .:/app
- /app/.venv # Don't overwrite the virtual environment
environment:
- FLASK_ENV=development
- FLASK_DEBUG=1
restart: unless-stopped