mirror of
https://github.com/JG2401/HetznerDokployLab.git
synced 2026-08-28 20:20:15 +00:00
19 lines
436 B
YAML
19 lines
436 B
YAML
services:
|
|
jellyseerr:
|
|
image: ghcr.io/fallenbagel/jellyseerr:2.7.3
|
|
init: true
|
|
container_name: jellyseerr
|
|
environment:
|
|
- TZ=${TIMEZONE}
|
|
volumes:
|
|
- config:/app/config
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
|
|
start_period: 20s
|
|
timeout: 3s
|
|
interval: 15s
|
|
retries: 3
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
config: |