version: '3.8' services: web: build: context: . dockerfile: Dockerfile ports: - "5000:5000" volumes: - ./website:/app/website environment: - FLASK_ENV=development - FLASK_DEBUG=1 command: python website/app.py restart: always