# Send Docker Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "docker-skill",
    "name": "Docker Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/RuneweaverStudios/docker-skill",
    "canonicalUrl": "https://clawhub.ai/RuneweaverStudios/docker-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/docker-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docker-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "reference.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "docker-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:08:48.227Z",
      "expiresAt": "2026-05-06T17:08:48.227Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docker-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=docker-skill",
        "contentDisposition": "attachment; filename=\"docker-skill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "docker-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/docker-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/docker-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/docker-skill",
    "agentUrl": "https://openagent3.xyz/skills/docker-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/docker-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/docker-skill/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RuneweaverStudios
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:08:48.227Z
- Expires at: 2026-05-06T17:08:48.227Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/docker-skill)
- [Send to Agent page](https://openagent3.xyz/skills/docker-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/docker-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/docker-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/docker-skill)