fertig bis auf Tankstellen und Graph

This commit is contained in:
2026-01-23 15:03:18 +01:00
parent 5f4f2c4379
commit d5b8df9506
27 changed files with 2198 additions and 17 deletions

41
docker-compose.yml Normal file
View File

@@ -0,0 +1,41 @@
version: '3.8'
services:
# Flutter Web App
flutter-tank-web:
build:
context: .
dockerfile: Dockerfile
container_name: flutter-tank-web
restart: unless-stopped
ports:
- "8080:80"
networks:
- app-network
environment:
- TZ=Europe/Vienna
labels:
- "traefik.enable=true"
- "traefik.http.routers.flutter-tank.rule=Host(`tank.yourdomain.com`)"
- "traefik.http.routers.flutter-tank.entrypoints=websecure"
- "traefik.http.routers.flutter-tank.tls.certresolver=letsencrypt"
- "traefik.http.services.flutter-tank.loadbalancer.server.port=80"
# Optional: Reverse Proxy für PTV API (Production)
ptv-proxy:
build:
context: ./proxy-server
dockerfile: Dockerfile
container_name: ptv-proxy
restart: unless-stopped
ports:
- "3000:3000"
networks:
- app-network
environment:
- NODE_ENV=production
- PORT=3000
networks:
app-network:
driver: bridge