Files
website/docker-compose.yml

15 lines
252 B
YAML

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