skovhjemmeside/docker-compose.yml
2024-08-10 20:26:57 +02:00

13 lines
202 B
YAML

version: '3.8'
services:
web:
build: .
command: gunicorn --bind 0.0.0.0:5000 wsgi:app
volumes:
- .:/app
ports:
- "5000:5000"
environment:
- FLASK_ENV=production