16 lines
356 B
YAML
16 lines
356 B
YAML
services:
|
|
mars:
|
|
image: rio-tiler-mars:latest
|
|
container_name: rio-tiler-mars
|
|
ports:
|
|
- "8002:8000"
|
|
volumes:
|
|
- ./data:/app/data:ro
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8002/tilejson.json"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|