This commit is contained in:
pika 2025-03-31 17:17:48 +02:00
parent af4b75acb4
commit 3036042416
6 changed files with 30 additions and 82 deletions

15
compose.yml Normal file
View file

@ -0,0 +1,15 @@
# 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}
restart: unless-stopped