feat: Docker-Integration hinzugefügt - Dockerfile, docker-compose.yml und .dockerignore erstellt - README.md mit umfassender Docker-Dokumentation erweitert - Multi-Service-Architektur für Hauptservice und Statistik-Service - Lokale Volume-Mappings für .env und .json Dateien - Vollständige Docker-Handhabung dokumentiert

This commit is contained in:
2025-08-11 10:03:40 +02:00
parent f79fc24b3b
commit 550b5261e1
4 changed files with 262 additions and 5 deletions

49
.dockerignore Normal file
View File

@@ -0,0 +1,49 @@
# Git
.git
.gitignore
# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.git
.mypy_cache
.pytest_cache
.hypothesis
# Docker
Dockerfile
docker-compose.yml
.dockerignore
# Dokumentation
README*.md
LICENSE.txt
# IDE
.vscode
.idea
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Lokale Konfiguration und Daten
.env
*.json
*.cmd