From 013bd858262ab7b9289f3d39e902c744fec9ded2 Mon Sep 17 00:00:00 2001 From: pfassina Date: Fri, 30 Jan 2026 12:56:21 -0800 Subject: [PATCH 1/5] Add OpenClaw LXC container script Add container creation, installation, and metadata for OpenClaw, a personal AI assistant with messaging platform integrations. --- ct/openclaw.sh | 46 ++++++++++++++++++++++++ frontend/public/json/openclaw.json | 46 ++++++++++++++++++++++++ install/openclaw-install.sh | 57 ++++++++++++++++++++++++++++++ 3 files changed, 149 insertions(+) create mode 100755 ct/openclaw.sh create mode 100644 frontend/public/json/openclaw.json create mode 100755 install/openclaw-install.sh diff --git a/ct/openclaw.sh b/ct/openclaw.sh new file mode 100755 index 000000000..1f1199c4b --- /dev/null +++ b/ct/openclaw.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2026 community-scripts ORG +# Author: pfassina +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/openclaw/openclaw + +APP="OpenClaw" +var_tags="${var_tags:-ai-assistant;chatops}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-4}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + if [[ ! -f /etc/systemd/system/openclaw.service ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + msg_info "Updating ${APP}" + systemctl stop openclaw + $STD npm install -g openclaw@latest + systemctl start openclaw + msg_ok "Updated ${APP}" + exit +} + +start +build_container +description + +msg_ok "Completed successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} Run 'openclaw onboard' inside the container to complete setup${CL}" +echo -e "${INFO}${YW} Access it using the following URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:18789${CL}" diff --git a/frontend/public/json/openclaw.json b/frontend/public/json/openclaw.json new file mode 100644 index 000000000..ec60f8754 --- /dev/null +++ b/frontend/public/json/openclaw.json @@ -0,0 +1,46 @@ +{ + "name": "OpenClaw", + "slug": "openclaw", + "categories": [22, 20], + "date_created": "2026-01-28", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 18789, + "documentation": "https://docs.openclaw.ai", + "website": "https://openclaw.ai", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/openclaw.webp", + "config_path": "/root/.openclaw/openclaw.json", + "description": "OpenClaw is a personal AI assistant that runs locally and integrates with messaging platforms like WhatsApp, Telegram, Discord, and Slack.", + "install_methods": [ + { + "type": "default", + "script": "ct/openclaw.sh", + "resources": { + "cpu": 2, + "ram": 2048, + "hdd": 4, + "os": "debian", + "version": "13" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "text": "After installation, run 'openclaw onboard' inside the container to configure AI providers.", + "type": "info" + }, + { + "text": "After onboarding, start the gateway with 'systemctl start openclaw'.", + "type": "info" + }, + { + "text": "The Control UI requires a secure context (HTTPS or localhost). Either use a reverse proxy with HTTPS, or connect via SSH port forwarding: ssh -L 18789:localhost:18789 root@, then open http://localhost:18789 in your browser.", + "type": "warning" + } + ] +} diff --git a/install/openclaw-install.sh b/install/openclaw-install.sh new file mode 100755 index 000000000..d661e3ccb --- /dev/null +++ b/install/openclaw-install.sh @@ -0,0 +1,57 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: pfassina +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/openclaw/openclaw + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +NODE_VERSION="22" setup_nodejs + +msg_info "Installing Dependencies" +$STD apt install -y git +msg_ok "Installed Dependencies" + +msg_info "Installing OpenClaw" +$STD npm install -g openclaw@latest +mkdir -p /root/.openclaw +cat <<'CONF' >/root/.openclaw/openclaw.json +{ + "gateway": { + "bind": "lan", + "port": 18789 + } +} +CONF +msg_ok "Installed OpenClaw" + +msg_info "Creating Service" +cat <<'EOF' >/etc/systemd/system/openclaw.service +[Unit] +Description=OpenClaw Gateway +After=network.target + +[Service] +Type=simple +ExecStart=/usr/bin/openclaw gateway --allow-unconfigured --port 18789 --bind lan +Restart=always +RestartSec=10 +Environment=NODE_ENV=production +Environment=PATH=/usr/bin:/usr/local/bin:/bin + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q openclaw +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc From a5d0b2cb395472f729c7e985cee1026be25011af Mon Sep 17 00:00:00 2001 From: MeadMaker <1872247+pfassina@users.noreply.github.com> Date: Fri, 30 Jan 2026 13:06:19 -0800 Subject: [PATCH 2/5] Update ct/openclaw.sh Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- ct/openclaw.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/openclaw.sh b/ct/openclaw.sh index 1f1199c4b..42385dcb8 100755 --- a/ct/openclaw.sh +++ b/ct/openclaw.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: pfassina # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE From 34c69e71172d14d1e21de344fb2d3e70d8c56642 Mon Sep 17 00:00:00 2001 From: MeadMaker <1872247+pfassina@users.noreply.github.com> Date: Fri, 30 Jan 2026 13:06:31 -0800 Subject: [PATCH 3/5] Update install/openclaw-install.sh Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- install/openclaw-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/openclaw-install.sh b/install/openclaw-install.sh index d661e3ccb..fb70ac140 100755 --- a/install/openclaw-install.sh +++ b/install/openclaw-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: pfassina -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/openclaw/openclaw source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" From d7d80846b2035fa47143480fde9ab79187cfbec5 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Fri, 30 Jan 2026 23:49:59 +0100 Subject: [PATCH 4/5] Update install/openclaw-install.sh Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- install/openclaw-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/openclaw-install.sh b/install/openclaw-install.sh index fb70ac140..d751a3156 100755 --- a/install/openclaw-install.sh +++ b/install/openclaw-install.sh @@ -49,7 +49,7 @@ Environment=PATH=/usr/bin:/usr/local/bin:/bin [Install] WantedBy=multi-user.target EOF -systemctl enable -q openclaw +systemctl enable -q --now openclaw msg_ok "Created Service" motd_ssh From 7f767dacd89e637fb52b6672371eca8a15a1c5be Mon Sep 17 00:00:00 2001 From: pfassina Date: Fri, 30 Jan 2026 16:15:29 -0800 Subject: [PATCH 5/5] Remove quotes from heredoc delimiters --- install/openclaw-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/openclaw-install.sh b/install/openclaw-install.sh index d751a3156..3d1c6c972 100755 --- a/install/openclaw-install.sh +++ b/install/openclaw-install.sh @@ -22,7 +22,7 @@ msg_ok "Installed Dependencies" msg_info "Installing OpenClaw" $STD npm install -g openclaw@latest mkdir -p /root/.openclaw -cat <<'CONF' >/root/.openclaw/openclaw.json +cat </root/.openclaw/openclaw.json { "gateway": { "bind": "lan", @@ -33,7 +33,7 @@ CONF msg_ok "Installed OpenClaw" msg_info "Creating Service" -cat <<'EOF' >/etc/systemd/system/openclaw.service +cat </etc/systemd/system/openclaw.service [Unit] Description=OpenClaw Gateway After=network.target