From 2b9210e37f8390d475223a7eff1bfa2550108668 Mon Sep 17 00:00:00 2001 From: AeroXuk Date: Sat, 7 Feb 2026 04:56:45 +0000 Subject: [PATCH 1/3] feat(script): add dockge --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/dockge.json | 66 +++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 docs/public/install-scripts/dockge.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index baa1a43..9603dce 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -4,6 +4,7 @@ | App | Download | Size | Last Modified | |---|---|---:|---| | `bazarr` | [bazarr.json](/install-scripts/bazarr.json) | 1.3 KB | 2025-12-25 | +| `dockge` | [dockge.json](/install-scripts/dockge.json) | 1.4 KB | 2025-02-07 | | `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 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.8 KB | 2025-12-25 | diff --git a/docs/public/install-scripts/dockge.json b/docs/public/install-scripts/dockge.json new file mode 100644 index 0000000..1dd6d8f --- /dev/null +++ b/docs/public/install-scripts/dockge.json @@ -0,0 +1,66 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": [ + "ApplicationsPerformance", + "ApplicationsCapacity" + ], + "specifications": [ + "2CORE", + "1GB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [ + 31014 + ] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/dockge/stacks", + "$LOCATION(ApplicationsPerformance)/dockge/data" + ], + "app_values": { + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 31014 + }, + "host_network": false + }, + "storage": { + "stacks": { + "type": "host_path", + "host_path_config": { + "acl_enable": false, + "path": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/stacks)" + } + }, + "data": { + "type": "host_path", + "host_path_config": { + "acl_enable": false, + "path": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/data)" + } + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 1024)" + } + } + } +} \ No newline at end of file From d043e20024bb7af9772363b15a9ff2561884dd63 Mon Sep 17 00:00:00 2001 From: AeroXuk Date: Sat, 7 Feb 2026 18:15:25 +0000 Subject: [PATCH 2/3] Commit correct version of Dockge install script Accidently commited WIP version instead of final version on last commit. Committing the corrected version now. --- docs/public/install-scripts/dockge.json | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/docs/public/install-scripts/dockge.json b/docs/public/install-scripts/dockge.json index 1dd6d8f..97703da 100644 --- a/docs/public/install-scripts/dockge.json +++ b/docs/public/install-scripts/dockge.json @@ -41,20 +41,8 @@ "host_network": false }, "storage": { - "stacks": { - "type": "host_path", - "host_path_config": { - "acl_enable": false, - "path": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/stacks)" - } - }, - "data": { - "type": "host_path", - "host_path_config": { - "acl_enable": false, - "path": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/data)" - } - } + "stacks": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/stacks)", + "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/data)" }, "resources": { "limits": { @@ -63,4 +51,4 @@ } } } -} \ No newline at end of file +} From 3bee4f8239b7fbdaa2fc8b2235fa2561bd4389f9 Mon Sep 17 00:00:00 2001 From: AeroXuk <9274396+AeroXuk@users.noreply.github.com> Date: Sun, 8 Feb 2026 19:05:39 +0000 Subject: [PATCH 3/3] fix(script): format dockge.json --- docs/public/install-scripts/dockge.json | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/docs/public/install-scripts/dockge.json b/docs/public/install-scripts/dockge.json index 97703da..4395de0 100644 --- a/docs/public/install-scripts/dockge.json +++ b/docs/public/install-scripts/dockge.json @@ -5,20 +5,10 @@ "changeLog": "Initial Script" }, "requirements": { - "locations": [ - "ApplicationsPerformance", - "ApplicationsCapacity" - ], - "specifications": [ - "2CORE", - "1GB" - ], - "permissions": [ - "READ_WRITE_LOCATIONS" - ], - "ports": [ - 31014 - ] + "locations": ["ApplicationsPerformance", "ApplicationsCapacity"], + "specifications": ["2CORE", "1GB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [31014] }, "ensure_directories_exists": [ {