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