From ac6daef93796d4d062f4661ff512af87e3f331ae Mon Sep 17 00:00:00 2001 From: "jonas@geiger-natur.de" Date: Tue, 6 Jan 2026 11:59:26 +0100 Subject: [PATCH] jellyseer ready for github deployment --- projects/jellyseer/README.md | 27 +++++++++++++++++++++++++++ projects/jellyseer/docker-compose.yml | 9 ++++++--- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/projects/jellyseer/README.md b/projects/jellyseer/README.md index e69de29..12be187 100644 --- a/projects/jellyseer/README.md +++ b/projects/jellyseer/README.md @@ -0,0 +1,27 @@ +# [jellyseer](https://docs.seerr.dev/) + +## jellyseer + +### General + +- Compose Path: `./projects/jellyseer/docker-compose.yml` + +### Environment + +- TIMEZONE: #your time zone - for example `Europe/Berlin` + +### Domains + +- Service Name: `jellyseer` +- Container Port: `5055` +- HTTPS: `true` +- Certificate Provider: `Let's Encrypt` + +### Volume Backups + +- Task Name: `jellyseer` +- Schedule `0 0 * * *` +- Service Name: `jellyseer` +- Volume: `jellyseer-jellyseer-xxx` +- Keep Latest Backups: `1` +- Enabled: true \ No newline at end of file diff --git a/projects/jellyseer/docker-compose.yml b/projects/jellyseer/docker-compose.yml index 6f7fde3..e161066 100644 --- a/projects/jellyseer/docker-compose.yml +++ b/projects/jellyseer/docker-compose.yml @@ -4,13 +4,16 @@ services: init: true container_name: jellyseerr environment: - - TZ=Europe/Berlin + - TZ=${TIMEZONE} volumes: - - /path/to/appdata/config:/app/config + - 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 \ No newline at end of file + restart: unless-stopped + +volumes: + config: \ No newline at end of file