From 6d01e0ebcc90a1e5f7b73aba85413ff62ba15cf1 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 9 Mar 2026 00:09:01 -0400 Subject: [PATCH 1/8] installation script for seerr install script for seer added --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/seerr.json | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 docs/public/install-scripts/seerr.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index baa1a43..0397355 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -18,6 +18,7 @@ | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-01-31 | +| `seerr` | [seerr.json](/install-scripts/seerr.json) | 851 B | 2026-03-09 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | | `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.0 KB | 2025-12-25 | diff --git a/docs/public/install-scripts/seerr.json b/docs/public/install-scripts/seerr.json new file mode 100644 index 0000000..ad8d8fc --- /dev/null +++ b/docs/public/install-scripts/seerr.json @@ -0,0 +1,44 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": [ + "ApplicationsPerformance" + ], + "specifications": [ + "2CORE", + "1024MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30357] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/seerr/config" + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/seerr/config)" + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30357 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file From 0e426a50329a522467dbdd5cae0104916fced428 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 14:01:56 -0400 Subject: [PATCH 2/8] fladder v4 script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/fladder.json | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 docs/public/install-scripts/fladder.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..782fefb 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -6,6 +6,7 @@ | `bazarr` | [bazarr.json](/install-scripts/bazarr.json) | 1.4 KB | 2026-05-15 | | `drawio` | [drawio.json](/install-scripts/drawio.json) | 634 B | 2026-05-15 | | `emby` | [emby.json](/install-scripts/emby.json) | 2.3 KB | 2026-05-15 | +| `fladder` | [fladder.json](/install-scripts/fladder.json) | 625 B | 2026-05-18 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.9 KB | 2026-05-15 | | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | diff --git a/docs/public/install-scripts/fladder.json b/docs/public/install-scripts/fladder.json new file mode 100644 index 0000000..f70d58b --- /dev/null +++ b/docs/public/install-scripts/fladder.json @@ -0,0 +1,31 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial script" + }, + "requirements": { + "locations": [], + "specifications": ["2CORE", "200MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30387] + }, + "app_values": { + "fladder": { + "jellyfin_base_url": "http://$SERVER_LAN_IP:30014", + "seer_base_url": "http://$SERVER_LAN_IP:30042" + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30387 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file From 7a3e627e10fff41478126bfd30feeb1019da146b Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 14:29:12 -0400 Subject: [PATCH 3/8] jellystat v4 script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/jellystat.json | 65 +++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 docs/public/install-scripts/jellystat.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..1d9e26d 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -10,6 +10,7 @@ | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.3 KB | 2026-05-15 | +| `jellystat` | [jellystat.json](/install-scripts/jellystat.json) | 1.7 KB | 2026-05-18 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-05-15 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.4 KB | 2026-05-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 911 B | 2026-05-15 | diff --git a/docs/public/install-scripts/jellystat.json b/docs/public/install-scripts/jellystat.json new file mode 100644 index 0000000..0e69028 --- /dev/null +++ b/docs/public/install-scripts/jellystat.json @@ -0,0 +1,65 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial" + }, + "installation_questions": [ + { + "question": "Are you using Jellyfin or Emby?", + "type": "select", + "key": "is_emby_api", + "required": true, + "options": [ + { + "text": "Jellyfin", + "value": "false" + }, + { + "text": "Emby", + "value": "true" + } + ], + "default": "false" + } + ], + "requirements": { + "locations": ["ApplicationsPerformance"], + "specifications": ["2CORE", "256MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30176] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/jellystat/backup", "owner": { "user": "apps" }, "snapshot": { "id": "backup" } }, + { "path": "$LOCATION(ApplicationsPerformance)/jellystat/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } } + ], + + "app_values": { + "jellystat": { + "db_password": "$RANDOM_STRING(7)", + "jwt_secret": "$RANDOM_STRING(7)", + "is_emby_api": "$QUESTION(is_emby_api)", + "additional_envs": [] + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30176 + } + }, + "storage": { + "backup": "$HOST_PATH($LOCATION(ApplicationsPerformance)/jellystat/backup)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/jellystat/postgres_data)" + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 4096)" + } + } + } +} \ No newline at end of file From 7cb6389d1c14799b3021a1e850ef76c32875ade2 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Fri, 22 May 2026 07:54:12 -0400 Subject: [PATCH 4/8] updated ports --- docs/public/install-scripts/fladder.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/public/install-scripts/fladder.json b/docs/public/install-scripts/fladder.json index f70d58b..0aa4c6b 100644 --- a/docs/public/install-scripts/fladder.json +++ b/docs/public/install-scripts/fladder.json @@ -12,7 +12,7 @@ }, "app_values": { "fladder": { - "jellyfin_base_url": "http://$SERVER_LAN_IP:30014", + "jellyfin_base_url": "http://$SERVER_LAN_IP:30013", "seer_base_url": "http://$SERVER_LAN_IP:30042" }, "network": { From dfff9c7ee9f1c9ee57e0b3a9dad2e3758964953a Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Fri, 22 May 2026 08:47:12 -0400 Subject: [PATCH 5/8] v4 update --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/seerr.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 0397355..93db917 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -18,7 +18,7 @@ | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-01-31 | -| `seerr` | [seerr.json](/install-scripts/seerr.json) | 851 B | 2026-03-09 | +| `seerr` | [seerr.json](/install-scripts/seerr.json) | 924 B | 2026-03-09 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | | `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.0 KB | 2025-12-25 | diff --git a/docs/public/install-scripts/seerr.json b/docs/public/install-scripts/seerr.json index ad8d8fc..a8a82a8 100644 --- a/docs/public/install-scripts/seerr.json +++ b/docs/public/install-scripts/seerr.json @@ -1,5 +1,5 @@ { - "version": 3, + "version": 4, "script": { "version": "1.0.0", "changeLog": "Initial Script" @@ -22,7 +22,7 @@ "path": "$LOCATION(ApplicationsPerformance)", "network_share": true }, - "$LOCATION(ApplicationsPerformance)/seerr/config" + { "path": "$LOCATION(ApplicationsPerformance)/seerr/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } } ], "app_values": { "storage": { From 6a4e7ad4adae46843f7b6d649ddf943295172ef3 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Sun, 24 May 2026 15:19:18 -0400 Subject: [PATCH 6/8] removed seerr url seems like when you use both, auto server finding fails --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/fladder.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 782fefb..b7df3a1 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -6,7 +6,7 @@ | `bazarr` | [bazarr.json](/install-scripts/bazarr.json) | 1.4 KB | 2026-05-15 | | `drawio` | [drawio.json](/install-scripts/drawio.json) | 634 B | 2026-05-15 | | `emby` | [emby.json](/install-scripts/emby.json) | 2.3 KB | 2026-05-15 | -| `fladder` | [fladder.json](/install-scripts/fladder.json) | 625 B | 2026-05-18 | +| `fladder` | [fladder.json](/install-scripts/fladder.json) | 566 B | 2026-05-22 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.9 KB | 2026-05-15 | | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | diff --git a/docs/public/install-scripts/fladder.json b/docs/public/install-scripts/fladder.json index 0aa4c6b..8670070 100644 --- a/docs/public/install-scripts/fladder.json +++ b/docs/public/install-scripts/fladder.json @@ -12,8 +12,7 @@ }, "app_values": { "fladder": { - "jellyfin_base_url": "http://$SERVER_LAN_IP:30013", - "seer_base_url": "http://$SERVER_LAN_IP:30042" + "jellyfin_base_url": "http://$SERVER_LAN_IP:30013" }, "network": { "web_port": { From 99258a69c99054c0a9a727270a5e1e3d27c4646c Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Thu, 28 May 2026 18:55:08 -0400 Subject: [PATCH 7/8] removed backup owner --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/jellystat.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 1d9e26d..fdaac92 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -10,7 +10,7 @@ | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.3 KB | 2026-05-15 | -| `jellystat` | [jellystat.json](/install-scripts/jellystat.json) | 1.7 KB | 2026-05-18 | +| `jellystat` | [jellystat.json](/install-scripts/jellystat.json) | 1.6 KB | 2026-05-18 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-05-15 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.4 KB | 2026-05-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 911 B | 2026-05-15 | diff --git a/docs/public/install-scripts/jellystat.json b/docs/public/install-scripts/jellystat.json index 0e69028..058ba0c 100644 --- a/docs/public/install-scripts/jellystat.json +++ b/docs/public/install-scripts/jellystat.json @@ -34,7 +34,7 @@ "path": "$LOCATION(ApplicationsPerformance)", "network_share": true }, - { "path": "$LOCATION(ApplicationsPerformance)/jellystat/backup", "owner": { "user": "apps" }, "snapshot": { "id": "backup" } }, + { "path": "$LOCATION(ApplicationsPerformance)/jellystat/backup", "snapshot": { "id": "backup" } }, { "path": "$LOCATION(ApplicationsPerformance)/jellystat/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } } ], From c7f78722db6f579061fe0bd52ef21839bb9065f7 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Thu, 28 May 2026 21:44:09 -0400 Subject: [PATCH 8/8] Update validation dates for curated install scripts --- docs/features/apps/install-scripts/curated/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index bbcd47e..fdd53b2 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -9,12 +9,12 @@ | `drawio` | [drawio.json](/install-scripts/drawio.json) | 634 B | 2026-05-15 | | `emby` | [emby.json](/install-scripts/emby.json) | 2.3 KB | 2026-05-15 | | `excalidraw` | [excalidraw.json](/install-scripts/excalidraw.json) | 614 B | 2026-05-18 | -| `fladder` | [fladder.json](/install-scripts/fladder.json) | 566 B | 2026-05-22 | +| `fladder` | [fladder.json](/install-scripts/fladder.json) | 566 B | 2026-05-24 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.9 KB | 2026-05-15 | | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.3 KB | 2026-05-15 | -| `jellystat` | [jellystat.json](/install-scripts/jellystat.json) | 1.6 KB | 2026-05-18 | +| `jellystat` | [jellystat.json](/install-scripts/jellystat.json) | 1.6 KB | 2026-05-28 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-05-15 | | `lubelogger` | [lubelogger.json](/install-scripts/lubelogger.json) | 1.5 KB | 2026-05-18 | | `navidrome` | [navidrome.json](/install-scripts/navidrome.json) | 5.1 KB | 2026-05-18 | @@ -25,8 +25,8 @@ | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 781 B | 2026-05-15 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2026-05-15 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.3 KB | 2026-05-15 | -| `seerr` | [seerr.json](/install-scripts/seerr.json) | 924 B | 2026-03-09 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.4 KB | 2026-05-15 | +| `seerr` | [seerr.json](/install-scripts/seerr.json) | 924 B | 2026-05-22 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.3 KB | 2026-05-15 | | `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.6 KB | 2026-05-15 |