Files
nginx-cache/docker-compose.yml
2026-01-07 19:12:45 +01:00

16 lines
359 B
YAML

version: '3.8'
services:
nginx-cache-proxy:
image: docker.site.quack-lab.dev/nginx-cache-proxy:latest
expose:
- 3000
volumes:
- ./nginx_cache:/var/cache/nginx
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:3000/health || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s