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 1/2] 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 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 2/2] 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" } } ],