Adds a new LXC helper-script for Etherpad (https://etherpad.org), a real-time collaborative document editor (Node.js / pnpm). - ct/etherpad.sh — launcher + update_script using check_for_gh_release against ether/etherpad-lite. - install/etherpad-install.sh — Node.js 22 via NodeSource, pnpm via corepack, clone latest release tag, pnpm install --frozen-lockfile && pnpm run build:etherpad, dedicated etherpad system user, systemd unit running `pnpm run prod`. - json/etherpad.json — category 12 (Documents & Notes), port 9001, default credentials none, default resources 2 vCPU / 2 GB RAM / 8 GB disk on Debian 12 unprivileged. Refs ether/etherpad#7529
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "Etherpad",
|
|
"slug": "etherpad",
|
|
"categories": [
|
|
12
|
|
],
|
|
"date_created": "2026-04-19",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 9001,
|
|
"documentation": "https://etherpad.org/doc",
|
|
"website": "https://etherpad.org",
|
|
"logo": "https://raw.githubusercontent.com/ether/etherpad-lite/develop/src/static/favicon.ico",
|
|
"description": "Etherpad is a highly customizable real-time collaborative document editor. It lets multiple people edit the same document simultaneously in the browser, with live changes, per-user colors, chat, and a rich plugin ecosystem.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/etherpad.sh",
|
|
"config_path": "/opt/etherpad-lite/settings.json",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 8,
|
|
"os": "Debian",
|
|
"version": "12"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "The default install uses the built-in DirtyDB store, intended for evaluation only. For production, edit /opt/etherpad-lite/settings.json and switch the 'dbType' to mysql or postgres.",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "View logs with: journalctl -u etherpad -f",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "Etherpad listens on port 9001. Restart the service after editing settings.json: systemctl restart etherpad",
|
|
"type": "info"
|
|
}
|
|
]
|
|
}
|