From 198ff498c623adbd870363355d6a9c881dbaf51d Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Sun, 16 Nov 2025 17:15:29 -0500 Subject: [PATCH 1/2] remove a few temp apps for now --- docs/public/install-scripts/minecraft.json | 21 -------------- docs/public/install-scripts/postgres.json | 33 ---------------------- docs/public/install-scripts/wg-easy.json | 15 ---------- 3 files changed, 69 deletions(-) delete mode 100644 docs/public/install-scripts/minecraft.json delete mode 100644 docs/public/install-scripts/postgres.json delete mode 100644 docs/public/install-scripts/wg-easy.json diff --git a/docs/public/install-scripts/minecraft.json b/docs/public/install-scripts/minecraft.json deleted file mode 100644 index 5a96cc9f..00000000 --- a/docs/public/install-scripts/minecraft.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": 1, - "ensure_directories_exists": [ - { - "path": "$LOCATION(ApplicationsPerformance)", - "network_share": true - }, - "$LOCATION(ApplicationsPerformance)/minecraft" - ], - "app_values": { - "minecraft": { - "eula": true, - "rcon_password": "$RANDOM_STRING(7)", - "type": "VANILLA", - "version": "LATEST" - }, - "storage": { - "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/minecraft)" - } - } -} \ No newline at end of file diff --git a/docs/public/install-scripts/postgres.json b/docs/public/install-scripts/postgres.json deleted file mode 100644 index 2abaf74b..00000000 --- a/docs/public/install-scripts/postgres.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 1, - "ensure_directories_exists": [ - { - "path": "$LOCATION(ApplicationsPerformance)", - "network_share": true - }, - { - "path": "$LOCATION(ApplicationsPerformance)/postgres", - "posix": true - } - ], - "ensure_permissions_exists": [ - { - "path": "$LOCATION(ApplicationsPerformance)/postgres", - "username": "netdata", - "access": "read", - "posix": { - "groupname": "docker" - } - } - ], - "app_values": { - "postgres": { - "user": "$RANDOM_STRING(7)", - "password": "$RANDOM_STRING(7)", - "database": "$RANDOM_STRING(7)" - }, - "storage": { - "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/postgres)" - } - } -} \ No newline at end of file diff --git a/docs/public/install-scripts/wg-easy.json b/docs/public/install-scripts/wg-easy.json deleted file mode 100644 index efe0346b..00000000 --- a/docs/public/install-scripts/wg-easy.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 1, - "ensure_directories_exists": [ - { - "path": "$LOCATION(ApplicationsPerformance)", - "network_share": true - }, - "$LOCATION(ApplicationsPerformance)/wg-easy" - ], - "app_values": { - "storage": { - "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/wg-easy)" - } - } -} \ No newline at end of file From 69bb1f604328996e8c70cce25e54735f98e88665 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Sun, 16 Nov 2025 17:22:22 -0500 Subject: [PATCH 2/2] update qbittorent --- docs/features/apps/install-scripts/curated/index.md | 7 ++----- docs/public/install-scripts/qbittorrent.json | 8 +++++++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 3764618e..3ce221bc 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -6,9 +6,6 @@ | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.2 KB | 2025-09-18 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.4 KB | 2025-09-29 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 1.9 KB | 2025-09-18 | -| `minecraft` | [minecraft.json](/install-scripts/minecraft.json) | 460 B | 2025-08-20 | -| `plex` | [plex.json](/install-scripts/plex.json) | 2.4 KB | 2025-11-10 | -| `postgres` | [postgres.json](/install-scripts/postgres.json) | 716 B | 2025-08-20 | -| `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 473 B | 2025-08-20 | -| `wg-easy` | [wg-easy.json](/install-scripts/wg-easy.json) | 317 B | 2025-08-20 | +| `plex` | [plex.json](/install-scripts/plex.json) | 2.9 KB | 2025-11-11 | +| `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 617 B | 2025-11-16 | diff --git a/docs/public/install-scripts/qbittorrent.json b/docs/public/install-scripts/qbittorrent.json index 77295569..844a2178 100644 --- a/docs/public/install-scripts/qbittorrent.json +++ b/docs/public/install-scripts/qbittorrent.json @@ -5,6 +5,10 @@ "path": "$LOCATION(ApplicationsPerformance)", "network_share": true }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, { "path": "$LOCATION(Downloads)", "network_share": true @@ -14,7 +18,9 @@ "app_values": { "storage": { "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/qbittorrent/config)", - "downloads": "$HOST_PATH($LOCATION(Downloads))" + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Downloads), /config/Downloads)" + ] } } } \ No newline at end of file