20 lines
459 B
YAML
20 lines
459 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", "curl", "-f", "http://localhost:5055/status"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|