diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index d34c70f1..5554616d 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -6,6 +6,7 @@ | `bazarr` | [bazarr.json](/install-scripts/bazarr.json) | 1.3 KB | 2025-12-25 | | `drawio` | [drawio.json](/install-scripts/drawio.json) | 739 B | 2025-12-25 | | `emby` | [emby.json](/install-scripts/emby.json) | 2.2 KB | 2026-01-21 | +| `filebrowser-quantum` | [filebrowser-quantum.json](/install-scripts/filebrowser-quantum.json) | 2.6 KB | 2026-01-25 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.8 KB | 2025-12-25 | | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.6 KB | 2025-12-04 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/filebrowser-quantum.json b/docs/public/install-scripts/filebrowser-quantum.json new file mode 100644 index 00000000..fab4f587 --- /dev/null +++ b/docs/public/install-scripts/filebrowser-quantum.json @@ -0,0 +1,117 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "installation_questions": [ + { + "question": "Admin Password", + "placeholder": "", + "type": "text", + "key": "admin_password", + "required": true, + "default": "" + } + ], + "requirements": { + "locations": [ + "ApplicationsPerformance", + "ApplicationsCapacity", + "Documents", + "Downloads", + "Media", + "Movies", + "Music", + "Photos", + "Shows", + "Videos" + ], + "specifications": [ + "2CORE", + "4096MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(Documents)", + "network_share": true + }, + { + "path": "$LOCATION(Downloads)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { + "path": "$LOCATION(Movies)", + "network_share": true + }, + { + "path": "$LOCATION(Music)", + "network_share": true + }, + { + "path": "$LOCATION(Photos)", + "network_share": true + }, + { + "path": "$LOCATION(Shows)", + "network_share": true + }, + { + "path": "$LOCATION(Videos)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/filebrowser-quantum/config" + ], + "app_values": { + "run_as": { + "user": 568, + "group": 568 + }, + "filebrowser": { + "admin_password": "$QUESTION(admin_password)" + }, + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/filebrowser-quantum/config)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Documents), /data/Documents)", + "$MOUNTED_HOST_PATH($LOCATION(Downloads), /data/Downloads)", + "$MOUNTED_HOST_PATH($LOCATION(Media), /data/Media)", + "$MOUNTED_HOST_PATH($LOCATION(Movies), /data/Movies)", + "$MOUNTED_HOST_PATH($LOCATION(Music), /data/Music)", + "$MOUNTED_HOST_PATH($LOCATION(Photos), /data/Photos)", + "$MOUNTED_HOST_PATH($LOCATION(Shows), /data/Shows)", + "$MOUNTED_HOST_PATH($LOCATION(Videos), /data/Videos)" + ] + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30334 + }, + "host_network": false + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 4096)" + } + } + } +} \ No newline at end of file