2026-05-30 15:57:07 +00:00
|
|
|
services:
|
2026-05-30 17:15:44 +00:00
|
|
|
martin:
|
|
|
|
|
image: ghcr.io/maplibre/martin:v1.10.1
|
|
|
|
|
container_name: rd13_martin
|
|
|
|
|
ports:
|
|
|
|
|
- "3000: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
|
|
|
|
|
command: ["--config", "/config/martin.yaml"]
|
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
|