Add Dockerfile and docker-compose.yml for deployment

This commit is contained in:
Ettore
2026-05-06 11:23:10 +02:00
parent da97027606
commit 89e5c1ac7e
4 changed files with 77 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
app:
build: .
ports:
- "8000:8000"
volumes:
- ./data:/app/data
environment:
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=changeme
- SECRET_KEY=supersecretkey
- MOCK_AVCONNECT=false
- APP_PORT=8000
restart: unless-stopped