skills$openclaw/dokku
akhil-naidu6.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.

6.9k stars4.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namedokku
descriptionInstalls, 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.
ownerakhil-naidu
repositoryakhil-naidu/dokku
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @akhil-naidu/dokku
last updatedFeb 7, 2026

Maintainer

akhil-naidu

akhil-naidu

Maintains dokku in the OpenClaw Skills directory.

View GitHub profile
File Explorer
34 files
.
apps
commands.md
1.7 KB
certs
commands.md
1.1 KB
cleanup
commands.md
2.1 KB
config
commands.md
1017 B
domains
commands.md
1.7 KB
git
commands.md
1.2 KB
install
commands.md
1.8 KB
logs
commands.md
805 B
network
commands.md
926 B
nginx
commands.md
958 B
plugin
commands.md
980 B
ps
commands.md
2.0 KB
run
commands.md
1.0 KB
storage
commands.md
852 B
upgrade
commands.md
2.9 KB
_meta.json
267 B
CHANGELOG.md
559 B
README.md
1.6 KB
SKILL.md
3.7 KB
SKILL.md

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.

SectionFileCommands / topics
Appsapps/commands.mdcreate, destroy, list, rename, clone, lock, unlock, report
Configconfig/commands.mdget, set, unset, export
Domainsdomains/commands.mdadd, set, remove, set-global, report
Git / deploygit/commands.mdfrom-image, set, deploy-branch, git push
Run (one-off / background)run/commands.mdrun, run:detached
Logslogs/commands.mdlogs, logs:failed, logs:set
Process (ps)ps/commands.mdscale, rebuild, restart, start, stop
Pluginplugin/commands.mdlist, install, update, uninstall
Certscerts/commands.mdadd, remove, generate
Nginxnginx/commands.mdbuild-config, show-config, set
Storagestorage/commands.mdmount, list
Networknetwork/commands.mdreport, bind-all-interfaces
Installinstall/commands.mdInstalling Dokku (bootstrap, post-install, alternatives)
Upgradeupgrade/commands.mdUpgrading Dokku; check migration guides before upgrading
Cleanupcleanup/commands.mdCleaning 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>, then git push dokku <branch>:master
  • Deploy (image): dokku git:from-image <app> <docker-image>
  • Run in background (Dokku): dokku run:detached <app> <cmd> or dokku run --detach <app> <cmd>
  • Agent-side background: For long deploys/installs, run the shell command via exec with background: true or short yieldMs; poll or check logs as needed.

For full command details and options, see the section files above.

README.md

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:

  1. Log in: clawhub login (or clawhub login --token <token>)
  2. 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

  1. Edit section files under dokku/<namespace>/commands.md or dokku/SKILL.md
  2. Bump version in CHANGELOG.md
  3. Publish: clawhub publish ./dokku --slug dokku --name "Dokku" --version x.y.z --changelog "..." --tags latest
  4. 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.