From 60f86080b8a647d9009a8c6943945de2d5b8dcd2 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:32:51 -0500 Subject: [PATCH] added pi gallery 2 --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/pigallery2.json | 52 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 docs/public/install-scripts/pigallery2.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index d34c70f1..c9a3259a 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -13,6 +13,7 @@ | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.3 KB | 2025-12-25 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.4 KB | 2025-12-28 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 823 B | 2025-12-25 | +| `pigallery2` | [pigallery2.json](/install-scripts/pigallery2.json) | 1.4 KB | 2026-01-27 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 766 B | 2025-12-04 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | diff --git a/docs/public/install-scripts/pigallery2.json b/docs/public/install-scripts/pigallery2.json new file mode 100644 index 00000000..835d1762 --- /dev/null +++ b/docs/public/install-scripts/pigallery2.json @@ -0,0 +1,52 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "ApplicationsCapacity"], + "specifications": ["2CORE", "2048MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30099] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/pigallery2/config", + "$LOCATION(ApplicationsPerformance)/pigallery2/db", + "$LOCATION(ApplicationsCapacity)/pigallery2/media", + "$LOCATION(ApplicationsPerformance)/pigallery2/thumbnails" + ], + "app_values": { + "run_as": { + "user": 568, + "group": 568 + }, + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/pigallery2/config)", + "db": "$HOST_PATH($LOCATION(ApplicationsPerformance)/pigallery2/db)", + "media": "$HOST_PATH($LOCATION(ApplicationsCapacity)/pigallery2/media)", + "thumbnails": "$HOST_PATH($LOCATION(ApplicationsPerformance)/pigallery2/thumbnails)" + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30099 + }, + "host_network": false + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file