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