rd13_tile_server/docker-compose.yml
Conrad Schulz e022f839db fix(satellite): PNG→JPEG-Konvertierung abgeschlossen, verifiziert und dokumentiert
BREAKING CHANGE: satellite.mbtiles ist nun einheitlich JPEG (zuvor gemischte PNG/JPEG)

Features:
- Neue Scripts: convert-satellite-to-jpeg.py (batch-basiert, resume-fähig)
- download-satellite.py jetzt mit on-the-fly PNG→JPEG-Konvertierung
- docker-compose.download.yml: Pillow installiert, Qualität konfigurierbar

Fixes:
- 1.505.049 PNG-Tiles zu JPEG konvertiert (22.9 Minuten)
- SQLite quick_check bestanden (png=0, quick_check=ok, total=5.6M)
- Martin lädt satellite-Source ohne Format-Warnungen
- Alle 3 Sources (osm, osm-europe, satellite) geladen und produktiv

Documentation:
- ADMIN.md: Satellit-Konvertierungs-Anleitung aktualisiert
- PROJECT_CONTEXT.md: Finaler Status dokumentiert
- Session-Log: 2026-06-15_satellite-fix-cleanup_session.md

Cleanup:
- Temporäre Dateien gelöscht
- 17GB Backup gelöscht
- __pycache__ gelöscht
2026-06-15 13:18:55 +00:00

38 lines
1.2 KiB
YAML

services:
martin:
image: ghcr.io/maplibre/martin:latest
container_name: rd13_martin
ports:
- "9982:3000"
volumes:
- ./data:/data
- ./config/martin.yaml:/config/martin.yaml:ro
command: ["--config", "/config/martin.yaml", "--webui", "enable-for-all", "--on-invalid", "warn"]
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
tileserver:
image: maptiler/tileserver-gl:latest
container_name: rd13_tileserver
ports:
- "9983:8080"
volumes:
- ./config/tileserver.json:/data/config.json:ro
- ./config/styles:/data/styles:ro
- ./data/fonts:/data/fonts:ro
- ./data/sprites:/data/sprites:ro
- ./data/osm.mbtiles:/data/osm.mbtiles:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:8080/health', r => process.exit(r.statusCode === 200 ? 0 : 1))"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
depends_on:
- martin