- scripts/download-data.sh: OSM planet (Planetiler) + satellite orchestrator - scripts/download-satellite.py: Sentinel-2 cloudless zoom 0-10 -> MBTiles resumable, 8 threads parallel, direct SQLite WAL write - docker-compose: port 9982:3000
17 lines
482 B
YAML
17 lines
482 B
YAML
services:
|
|
martin:
|
|
image: ghcr.io/maplibre/martin:v1.10.1
|
|
container_name: rd13_martin
|
|
ports:
|
|
- "9982:3000"
|
|
volumes:
|
|
- ./data:/data
|
|
- ./config/martin.yaml:/config/martin.yaml:ro
|
|
command: ["--config", "/config/martin.yaml"]
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|