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..4395de0 --- /dev/null +++ b/docs/public/install-scripts/dockge.json @@ -0,0 +1,44 @@ +{ + "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": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/stacks)", + "data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/dockge/data)" + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 1024)" + } + } + } +}