From 79ad684c978d2bff414c03828e2ef5e5e934e83e Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Mon, 18 May 2026 14:03:39 -0400 Subject: [PATCH] linkwarden v4 script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/linkwarden.json | 46 +++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 docs/public/install-scripts/linkwarden.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..5941a4c 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.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 | +| `linkwarden` | [linkwarden.json](/install-scripts/linkwarden.json) | 1.5 KB | 2026-05-18 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.4 KB | 2026-05-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 911 B | 2026-05-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2026-05-15 | diff --git a/docs/public/install-scripts/linkwarden.json b/docs/public/install-scripts/linkwarden.json new file mode 100644 index 0000000..87ad044 --- /dev/null +++ b/docs/public/install-scripts/linkwarden.json @@ -0,0 +1,46 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial script" + }, + "requirements": { + "locations": ["ApplicationsPerformance"], + "specifications": ["2CORE", "200MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30243] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/linkwarden/data", "owner": { "user": "apps" }, "snapshot": { "id": "data" } }, + { "path":"$LOCATION(ApplicationsPerformance)/linkwarden/meili_data", "owner": { "user": "apps", "group": "apps" }, "snapshot": { "id": "db" } }, + { "path":"$LOCATION(ApplicationsPerformance)/linkwarden/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } } + ], + "app_values": { + "linkwarden": { + "db_password": "$RANDOM_STRING(7)", + "nextauth_secret": "$RANDOM_STRING(7)", + "meilisearch_master_key": "$RANDOM_STRING(7)" + }, + "storage": { + "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/linkwarden/data)", + "meili_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/linkwarden/meili_data)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/linkwarden/postgres_data)" + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30243 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file