Add Docker Compose setup

Multi-stage Dockerfile builds the React frontend then serves everything
from a single Python container. settings.json persists via a named volume.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Space-Banane
2026-06-26 15:40:08 +02:00
parent 20f06d0a57
commit 678110d9e9
3 changed files with 33 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
services:
app:
build: .
ports:
- "8000:8000"
volumes:
- data:/app/data
environment:
SETTINGS_PATH: /app/data/settings.json
OPENAI_MODEL: gpt-4.1
restart: unless-stopped
volumes:
data: