Files
opt/compose.jellyseerr.yaml

24 lines
527 B
YAML

services:
jellyseerr:
container_name: jellyseerr
environment:
- TZ=Europe/Amsterdam
image: fallenbagel/jellyseerr:1.5.0
ports:
- 15055:5055
restart: unless-stopped
volumes:
- /opt/jellyseerr:/app/config
extra_hosts:
- "sonarr:${HOST_IP}"
- "radarr:${HOST_IP}"
healthcheck:
test:
[
"CMD-SHELL",
"wget --no-verbose --spider http://localhost:5055/status || exit 1",
]
interval: 30s
timeout: 10s
retries: 3