diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..2c3eff6 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -10,6 +10,7 @@ | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `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 | +| `komga` | [komga.json](/install-scripts/komga.json) | 1.2 KB | 2026-05-18 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-05-15 | | `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 | diff --git a/docs/public/install-scripts/komga.json b/docs/public/install-scripts/komga.json new file mode 100644 index 0000000..253c527 --- /dev/null +++ b/docs/public/install-scripts/komga.json @@ -0,0 +1,49 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial script" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "Media", "Documents"], + "specifications": ["2CORE", "200MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30048] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { + "path": "$LOCATION(Documents)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/komga/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } } + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/komga/config)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Media), /media)", + "$MOUNTED_HOST_PATH($LOCATION(Documents), /documents)" + ] + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30048 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file