Files
Novel-Map/tile-proxy/docker-compose.yml

16 lines
395 B
YAML
Raw Normal View History

2026-03-31 15:56:51 +08:00
services:
tile-proxy:
image: nginx:alpine
ports:
- "8080:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./cache:/var/cache/nginx/tiles
restart: unless-stopped
# 健康检查每30秒确认代理存活
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost/health"]
interval: 30s
timeout: 5s
retries: 3