homedocs/compose.yml
2025-03-31 17:40:16 +02:00

16 lines
374 B
YAML

# version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
# image: homedocs:latest
ports:
- "8000:8000"
volumes:
- ./instance:/app/instance # Persist SQLite database
environment:
- FLASK_ENV=${FLASK_ENV:-production}
- SECRET_KEY=${SECRET_KEY:-} # Will be generated if empty
restart: unless-stopped