ErisPulse 1Panel App Store integration. One-click install ErisPulse via 1Panel.
Visit get-1panel.erisdev.com for a guided setup page.
1Panel Scheduled Task (recommended):
Create a Shell script task in 1Panel → Scheduled Tasks, paste:
bash <(curl -sL https://get-1panel.erisdev.com/install.sh)Or with wget: bash <(wget -qO- https://get-1panel.erisdev.com/install.sh)
Manual:
git clone -b main --depth 1 https://github.com/ErisPulse/ErisPulse-1Panel /tmp/erispulse-1panel
cp -rf /tmp/erispulse-1panel/apps/erispulse /opt/1panel/resource/apps/local/
rm -rf /tmp/erispulse-1panelAfter install, click "Update App List" in 1Panel App Store.
bash <(curl -sL https://get-1panel.erisdev.com/uninstall.sh)Re-run the install command to overwrite. Docker only runs the container; framework updates are handled via Dashboard hot-update.
ErisPulse-1Panel/
├── wrangler.toml # Cloudflare Worker config
├── package.json
├── scripts/
│ ├── install.sh
│ └── uninstall.sh
├── worker/src/index.js # Worker entry
└── apps/erispulse/
├── data.yml
├── logo.png
├── README.md
├── latest/
│ ├── docker-compose.yml
│ └── data.yml
└── 2.4.5 ~ 2.5.2.dev0/ # Deprecated: removed
ErisPulse 的 1Panel 应用商店适配,支持一键安装。
访问 get-1panel.erisdev.com 获取可视化安装指引。
1Panel 计划任务(推荐):
在 1Panel → 计划任务中创建 Shell 脚本任务,粘贴:
bash <(curl -sL https://get-1panel.erisdev.com/install.sh)或使用 wget:bash <(wget -qO- https://get-1panel.erisdev.com/install.sh)
手动安装:
git clone -b main --depth 1 https://github.com/ErisPulse/ErisPulse-1Panel /tmp/erispulse-1panel
cp -rf /tmp/erispulse-1panel/apps/erispulse /opt/1panel/resource/apps/local/
rm -rf /tmp/erispulse-1panel安装后在 1Panel 应用商店中点击 「更新应用列表」 刷新。
bash <(curl -sL https://get-1panel.erisdev.com/uninstall.sh)重新执行安装命令即可覆盖更新。Docker 仅负责运行容器,框架更新请通过 Dashboard 热更新完成。

