diff --git a/docker-compose.yml b/docker-compose.yml index 3efaf9a..84e7c11 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -82,14 +82,22 @@ services: ports: - 8989:8989 restart: unless-stopped - jellyseerr: - image: fallenbagel/jellyseerr:latest - container_name: jellyseerr - environment: - - LOG_LEVEL=debug - - TZ=Asia/Yekaterinburg - ports: - - 5055:5055 - volumes: - - /mnt/hdd/config:/app/config - restart: unless-stopped \ No newline at end of file + seerr: + image: ghcr.io/seerr-team/seerr:latest + init: true + container_name: seerr + environment: + - LOG_LEVEL=debug + - TZ=Asia/Yekaterinburg + - PORT=5055 #optional + ports: + - 5055:5055 + volumes: + - /mnt/hdd/seerr/config:/app/config + healthcheck: + test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1 + start_period: 20s + timeout: 3s + interval: 15s + retries: 3 + restart: unless-stopped \ No newline at end of file