mirror of
https://github.com/plexguide/Huntarr.io.git
synced 2026-02-20 07:44:17 -05:00
31 lines
908 B
YAML
31 lines
908 B
YAML
services:
|
|
huntarr:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: huntarr
|
|
ports:
|
|
- "9705:9705"
|
|
volumes:
|
|
- huntarr-config:/config
|
|
environment:
|
|
- TZ=${TZ:-UTC}
|
|
- BASE_URL=${BASE_URL:-}
|
|
- PUID=${PUID:-0}
|
|
- PGID=${PGID:-0}
|
|
restart: unless-stopped
|
|
# Graceful shutdown configuration
|
|
stop_signal: SIGTERM
|
|
stop_grace_period: 30s
|
|
# Health check configuration using Python to avoid spawning curl processes
|
|
# The SIGCHLD handler in main.py will reap any terminated health check processes
|
|
healthcheck:
|
|
test: ["CMD", "python3", "-c", "import requests; import sys; r = requests.get('http://localhost:9705/api/health', timeout=5); sys.exit(0 if r.status_code == 200 else 1)"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
start_period: 40s
|
|
retries: 3
|
|
|
|
volumes:
|
|
huntarr-config:
|
|
name: huntarr-config |