6.9k★by akhil-naidu
dokku – OpenClaw Skill
dokku is an OpenClaw Skills integration for data analytics workflows. Installs, upgrades, and uses Dokku to create apps, deploy, run one-off/background tasks, and clean up containers. Use when the user asks to install or upgrade Dokku, deploy to Dokku, install an app, run something in the background, or clean up Dokku/containers. Trigger terms: dokku, install dokku, upgrade dokku, migration guide, deploy, cleanup, prune, containers.
Skill Snapshot
| name | dokku |
| description | Installs, upgrades, and uses Dokku to create apps, deploy, run one-off/background tasks, and clean up containers. Use when the user asks to install or upgrade Dokku, deploy to Dokku, install an app, run something in the background, or clean up Dokku/containers. Trigger terms: dokku, install dokku, upgrade dokku, migration guide, deploy, cleanup, prune, containers. OpenClaw Skills integration. |
| owner | akhil-naidu |
| repository | akhil-naidu/dokku |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @akhil-naidu/dokku |
| last updated | Feb 7, 2026 |
Maintainer

name: dokku description: Installs, upgrades, and uses Dokku to create apps, deploy, run one-off/background tasks, and clean up containers. Use when the user asks to install or upgrade Dokku, deploy to Dokku, install an app, run something in the background, or clean up Dokku/containers. Trigger terms: dokku, install dokku, upgrade dokku, migration guide, deploy, cleanup, prune, containers. metadata: {"openclaw":{"requires":{"bins":["dokku"]}}}
Dokku
Dokku is a PaaS; commands run on the Dokku host (SSH or local). Prefer running long operations (deploys, builds) in the background — use exec with background: true or short yieldMs when the tool allows.
Section index
Detailed command syntax and examples live in each section file. Read the relevant file when performing that category of task.
| Section | File | Commands / topics |
|---|---|---|
| Apps | apps/commands.md | create, destroy, list, rename, clone, lock, unlock, report |
| Config | config/commands.md | get, set, unset, export |
| Domains | domains/commands.md | add, set, remove, set-global, report |
| Git / deploy | git/commands.md | from-image, set, deploy-branch, git push |
| Run (one-off / background) | run/commands.md | run, run:detached |
| Logs | logs/commands.md | logs, logs:failed, logs:set |
| Process (ps) | ps/commands.md | scale, rebuild, restart, start, stop |
| Plugin | plugin/commands.md | list, install, update, uninstall |
| Certs | certs/commands.md | add, remove, generate |
| Nginx | nginx/commands.md | build-config, show-config, set |
| Storage | storage/commands.md | mount, list |
| Network | network/commands.md | report, bind-all-interfaces |
| Install | install/commands.md | Installing Dokku (bootstrap, post-install, alternatives) |
| Upgrade | upgrade/commands.md | Upgrading Dokku; check migration guides before upgrading |
| Cleanup | cleanup/commands.md | Cleaning up Dokku and containers (prune, builder prune, apps) |
Quick reference
- Create app:
dokku apps:create <app-name> - Deploy (git): Add remote
dokku@<host>:<app-name>, thengit push dokku <branch>:master - Deploy (image):
dokku git:from-image <app> <docker-image> - Run in background (Dokku):
dokku run:detached <app> <cmd>ordokku run --detach <app> <cmd> - Agent-side background: For long deploys/installs, run the shell command via exec with
background: trueor shortyieldMs; poll or check logs as needed.
For full command details and options, see the section files above.
dokku-skills
OpenClaw/ClawHub skill for Dokku: install, upgrade, deploy apps, run one-off/background tasks, and clean up containers.
What this skill covers
- Install — Installing Dokku (bootstrap, post-install, alternatives)
- Upgrade — Upgrading Dokku (migration guides, before/after, dokku-update, apt)
- Cleanup — Cleaning up Dokku and containers (prune, builder prune, apps)
- Apps — create, destroy, list, rename, clone, lock, unlock, report
- Config, domains, git, run, logs, ps, plugin, certs, nginx, storage, network — full command reference per namespace
Install the skill locally
Option 1: From ClawHub (after publish)
npm i -g clawhub
clawhub install dokku
Then start a new OpenClaw session so the skill is loaded.
Option 2: Copy into your workspace
Copy the dokku/ folder into your OpenClaw skills directory:
- Workspace:
<workspace>/skills/dokku/ - Global:
~/.openclaw/skills/dokku/
Start a new OpenClaw session after copying.
Publish to ClawHub
From this repo root:
- Log in:
clawhub login(orclawhub login --token <token>) - Publish the skill:
clawhub publish ./dokku --slug dokku --name "Dokku" --version 1.0.0 --changelog "Initial release." --tags latest
After that, anyone can install with: clawhub install dokku.
Updating the skill
- Edit section files under
dokku/<namespace>/commands.mdordokku/SKILL.md - Bump version in
CHANGELOG.md - Publish:
clawhub publish ./dokku --slug dokku --name "Dokku" --version x.y.z --changelog "..." --tags latest - Users upgrade with:
clawhub update dokku
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install dokku?
Run openclaw add @akhil-naidu/dokku in your terminal. This installs dokku into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/akhil-naidu/dokku. Review commits and README documentation before installing.
