1 2 3 4 5 6 7 8 9 10 11 12
version: '2' services: web: build: . environment: - FLASK_APP=main.py - FLASK_ENV=development ports: - "5000:5000" volumes: - .:/mat2-web restart: always