Files
website/docker-compose.yml

17 lines
306 B
YAML

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