← All skills
Tencent SkillHub Β· Productivity

Docker Skill

Installs and uses Docker reliably with official docs. Use when installing Docker (Desktop or Engine), building or running containers, writing Dockerfiles, us...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Installs and uses Docker reliably with official docs. Use when installing Docker (Desktop or Engine), building or running containers, writing Dockerfiles, us...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
reference.md, SKILL.md

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Docker β€” Install and Use Containers

Enables OpenClaw (and Cursor) to install Docker and use it reliably. Base all guidance on official Docker docs; when in doubt, fetch from canonical URLs below.

When to Apply

User wants to install Docker (macOS, Linux, Windows) User asks about containers, images, Dockerfile, docker compose Building, running, or debugging Docker commands or workflows User asks for "latest Docker docs" or "how do I use Docker"

Canonical Documentation URLs

PurposeURLGet started / overviewhttps://docs.docker.com/get-started/overview/Get Docker (install)https://docs.docker.com/get-started/get-docker/Develop with containershttps://docs.docker.com/get-started/introduction/develop-with-containers/Guideshttps://docs.docker.com/guides/Manuals (install, config, use)https://docs.docker.com/manuals/Reference (CLI, Dockerfile, API)https://docs.docker.com/reference/Engine install (Linux)https://docs.docker.com/engine/install/Docker Desktop Machttps://docs.docker.com/desktop/install/mac-install/Docker CLI referencehttps://docs.docker.com/reference/cli/docker/Dockerfile referencehttps://docs.docker.com/reference/dockerfile/ Rule: For install steps, CLI syntax, or Dockerfile instructions, fetch the relevant doc URL and use that content. Do not rely on training data for version-specific install or command details.

macOS

Recommended: Docker Desktop Download from official docs: Install Docker Desktop on Mac. Apple Silicon: https://desktop.docker.com/mac/main/arm64/Docker.dmg Intel: https://desktop.docker.com/mac/main/amd64/Docker.dmg Open Docker.dmg, drag Docker to Applications, then open Docker.app and accept terms. CLI install (optional): After downloading the DMG: sudo hdiutil attach Docker.dmg sudo /Volumes/Docker/Docker.app/Contents/MacOS/install sudo hdiutil detach /Volumes/Docker Verify: docker run hello-world OpenClaw / automation: If docker is missing and the user is on macOS, suggest installing via Homebrew: brew install --cask docker, then starting Docker Desktop so the daemon is running.

Linux (Ubuntu example)

Prefer Docker Engine from apt (see Install Docker Engine on Ubuntu). Remove conflicting packages first: sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc 2>/dev/null | cut -f1) Add Docker’s apt repo, then: sudo apt update sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl start docker sudo docker run hello-world Optional (run without sudo): Linux postinstall β€” add user to docker group. Convenience script (dev/test only): curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh. Not recommended for production.

Windows

Use Get Docker and follow Docker Desktop for Windows (WSL2 backend recommended).

Core Workflow: Build and Run

Dockerfile in app directory (see reference.md or Dockerfile reference). Build image: docker build -t <name> . Run container: docker run -d -p HOST_PORT:CONTAINER_PORT <name> (e.g. -p 127.0.0.1:3000:3000). List containers: docker ps (running), docker ps -a (all). Stop/remove: docker stop <container>, docker rm <container>. Example from official getting-started: docker build -t getting-started . docker run -d -p 127.0.0.1:3000:3000 getting-started # Open http://localhost:3000

Daemon Must Be Running

Docker Desktop (Mac/Windows): Ensure Docker Desktop app is running; docker CLI talks to its daemon. Linux: sudo systemctl start docker (and enable if needed). If the user sees "Cannot connect to the Docker daemon", direct them to start Docker Desktop or the engine service and try again.

Quick Reference

Images: docker pull <image>, docker images, docker rmi <image> Containers: docker run, docker ps, docker stop, docker rm, docker logs <container> Compose: docker compose up -d, docker compose down β€” use compose.yaml in project root (see Compose file reference). Cleanup: docker system prune -a (removes unused images/containers/networks; use with care).

Additional Resources

For detailed CLI and Dockerfile syntax, see reference.md. For full specs, fetch from the official reference and guides.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • reference.md Docs