From 6e89efb5ae10da98ca72c0a6c9d52aa6384584eb Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 14:37:22 -0400 Subject: [PATCH] shelfmark v4 script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/shelfmark.json | 50 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 docs/public/install-scripts/shelfmark.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..12818b1 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 | 2026-05-15 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.3 KB | 2026-05-15 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.4 KB | 2026-05-15 | +| `shelfmark` | [shelfmark.json](/install-scripts/shelfmark.json) | 1.1 KB | 2026-05-18 | | `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 | diff --git a/docs/public/install-scripts/shelfmark.json b/docs/public/install-scripts/shelfmark.json new file mode 100644 index 0000000..dc5afb8 --- /dev/null +++ b/docs/public/install-scripts/shelfmark.json @@ -0,0 +1,50 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial" + }, + "requirements": { + "locations": [ + "ApplicationsPerformance", "Media" + ], + "specifications": [ + "2CORE", + "1024MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30260] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/shelfmark/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } }, + { "path": "$LOCATION(Media)/books" } + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/shelfmark/config)", + "books": "$HOST_PATH($LOCATION(Media)/books)" + } + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30260 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(5%, 1024)" + } + } +} \ No newline at end of file