2026-05-30 15:57:07 +00:00
|
|
|
services:
|
2026-05-30 17:15:44 +00:00
|
|
|
martin:
|
2026-06-10 07:43:22 +00:00
|
|
|
image: ghcr.io/maplibre/martin:latest
|
2026-05-30 17:15:44 +00:00
|
|
|
container_name: rd13_martin
|
|
|
|
|
ports:
|
2026-05-31 06:50:56 +00:00
|
|
|
- "9982:3000"
|
2026-05-30 15:57:07 +00:00
|
|
|
volumes:
|
|
|
|
|
- ./data:/data
|
2026-05-30 17:15:44 +00:00
|
|
|
- ./config/martin.yaml:/config/martin.yaml:ro
|
2026-06-10 07:43:22 +00:00
|
|
|
command: ["--config", "/config/martin.yaml", "--webui", "enable-for-all"]
|
2026-05-30 15:57:07 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
|
healthcheck:
|
2026-05-30 17:15:44 +00:00
|
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"]
|
2026-05-30 15:57:07 +00:00
|
|
|
interval: 30s
|
|
|
|
|
timeout: 10s
|
|
|
|
|
retries: 3
|
2026-05-30 17:15:44 +00:00
|
|
|
start_period: 10s
|
2026-06-12 09:29:50 +00:00
|
|
|
|
|
|
|
|
tileserver:
|
|
|
|
|
image: ghcr.io/maptiler/tileserver-gl:latest
|
|
|
|
|
container_name: rd13_tileserver
|
|
|
|
|
ports:
|
|
|
|
|
- "9983:8080"
|
|
|
|
|
volumes:
|
|
|
|
|
- ./data/styles:/data/styles:ro
|
|
|
|
|
- ./data/fonts:/data/fonts:ro
|
|
|
|
|
- ./data/sprites:/data/sprites:ro
|
|
|
|
|
environment:
|
|
|
|
|
- PMTILES_CACHE_DIR=/tmp/pmtiles-cache
|
|
|
|
|
- NODE_ENV=production
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:8080/health"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 10s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 10s
|
|
|
|
|
depends_on:
|
|
|
|
|
- martin
|