From 6f2e5bd67ee8c491043a3f027bd5ce7b0d2bcaea Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Tue, 31 Mar 2026 11:05:18 -0400 Subject: [PATCH 1/2] music assistant install script the "data" dataset either needs passthrough or posix --- .../apps/install-scripts/curated/index.md | 1 + .../install-scripts/music-assistant.json | 57 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 docs/public/install-scripts/music-assistant.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..e7e05307 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -11,6 +11,7 @@ | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2026-03-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.2 KB | 2026-03-15 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-03-15 | +| `music-assistant` | [music-assistant.json](/install-scripts/music-assistant.json) | 1.3 KB | 2026-03-31 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.5 KB | 2026-03-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 834 B | 2026-03-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/music-assistant.json b/docs/public/install-scripts/music-assistant.json new file mode 100644 index 00000000..888ef267 --- /dev/null +++ b/docs/public/install-scripts/music-assistant.json @@ -0,0 +1,57 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": [], + "specifications": ["2CORE", "256MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30278, 30279] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(Music)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/music-assistant/data" + ], + "app_values": { + "music_assistant": { + "base_url": "http://$SERVER_LAN_IP:30278" + }, + "storage": { + "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/music-assistant/data)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Media), /media)", + "$MOUNTED_HOST_PATH($LOCATION(Music), /music)" + ] + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30278 + }, + "stream_port": { + "bind_mode": "published", + "port_number": 30279 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 4096)" + }, + "gpus": "$GPU_CONFIG()" + } + } +} \ No newline at end of file From 28c6a6275b7baf8a4cf97178f9f85cc6e9355ba6 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 15:05:29 -0400 Subject: [PATCH 2/2] v4 script --- docs/public/install-scripts/music-assistant.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/public/install-scripts/music-assistant.json b/docs/public/install-scripts/music-assistant.json index 888ef267..55a40d1a 100644 --- a/docs/public/install-scripts/music-assistant.json +++ b/docs/public/install-scripts/music-assistant.json @@ -1,5 +1,5 @@ { - "version": 3, + "version": 4, "script": { "version": "1.0.0", "changeLog": "Initial Script" @@ -23,7 +23,7 @@ "path": "$LOCATION(Media)", "network_share": true }, - "$LOCATION(ApplicationsPerformance)/music-assistant/data" + { "path": "$LOCATION(ApplicationsPerformance)/music-assistant/data", "owner": { "user": "apps" }, "snapshot": { "id": "data" } } ], "app_values": { "music_assistant": {