From e99d73c6a95d347900f5410df223b5723895a61d Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 14:25:30 -0400 Subject: [PATCH] immich kiosk v4 script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/immich-kiosk.json | 58 +++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 docs/public/install-scripts/immich-kiosk.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..875e55c 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -8,6 +8,7 @@ | `emby` | [emby.json](/install-scripts/emby.json) | 2.3 KB | 2026-05-15 | | `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-kiosk` | [immich-kiosk.json](/install-scripts/immich-kiosk.json) | 1.4 KB | 2026-05-18 | | `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 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-05-15 | diff --git a/docs/public/install-scripts/immich-kiosk.json b/docs/public/install-scripts/immich-kiosk.json new file mode 100644 index 0000000..07d6613 --- /dev/null +++ b/docs/public/install-scripts/immich-kiosk.json @@ -0,0 +1,58 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial" + }, + "installation_questions": [ + { + "question": "Immich Api key", + "description": "An api key is used to give Immich Kiosk access to your Immich media. You can find instructions to get your api key at https://docs.immich.app/features/command-line-interface#obtain-the-api-key", + "type": "text", + "key": "immich_api_key", + "required": true, + "default": "" + } + ], + "requirements": { + "locations": [ + "ApplicationsPerformance" + ], + "specifications": [ + "2CORE", + "1024MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30408] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/immich-kiosk/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } } + ], + "app_values": { + "kiosk": { + "immich_api_key": "$QUESTION(immich_api_key)", + "immich_url": "http://$SERVER_LAN_IP:2283" + }, + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/immich-kiosk/config)" + } + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30408 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(5%, 1024)" + } + } +} \ No newline at end of file