Erstelle Docker-Setup mit Installationsskripten für Frontend und Backend

- Füge Docker-Compose-Konfiguration mit Host-Netzwerk für Frontend und Backend hinzu
- Erstelle Dockerfile für das Frontend mit automatischer Datenbankmigration
- Aktualisiere Backend-Docker-Compose mit korrekten Umgebungsvariablen
- Implementiere Installationsskripte:
  - install-myp.sh: Vollständige Installation beider Komponenten
  - start-myp.sh: Starten der installierten Container
  - stop-myp.sh: Stoppen der Container
  - setup-backend-env.sh: Einrichten der Backend-Umgebungsvariablen
- Korrigiere SQLite-Datenbankprobleme im Frontend

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-03-31 10:36:16 +02:00
parent 4db5512b57
commit 951473d1ec
8 changed files with 338 additions and 23 deletions

View File

@ -4,11 +4,13 @@ services:
backend:
build: .
container_name: myp-backend
ports:
- "5000:5000"
network_mode: host
environment:
- SECRET_KEY=7445630171969DFAC92C53CEC92E67A9CB2E00B3CB2F
- DATABASE_URL=sqlite:///myp.db
- DATABASE_PATH=instance/myp.db
- TAPO_USERNAME=till.tomczak@mercedes-benz.com
- TAPO_PASSWORD=744563017196A
- PRINTERS={"Printer 1": {"ip": "192.168.0.100"}, "Printer 2": {"ip": "192.168.0.101"}, "Printer 3": {"ip": "192.168.0.102"}, "Printer 4": {"ip": "192.168.0.103"}, "Printer 5": {"ip": "192.168.0.104"}, "Printer 6": {"ip": "192.168.0.106"}}
volumes:
- ./logs:/app/logs
- ./instance:/app/instance