Control Docker containers and images from Yoki.
| Command | What |
|---|---|
dc |
List containers (default Enter toggles start/stop) |
dc <query> |
Filter by name or image |
dc images |
List images |
dc prune |
Show confirmation hint |
dc prune yes |
Run docker system prune -f |
Start / Stop (default toggle), Restart, Logs (opens terminal with docker logs -f), Shell (opens terminal with docker exec -it … sh), Inspect → clipboard, Copy ID, Remove.
Docker Desktop (Windows) with the daemon running. If missing, the plugin tells you.
- Install the plugin (copy folder to Yoki plugins dir or symlink).
- In Yoki, type
plugins→ verify "Docker" appears, enabled. - If Docker Desktop NOT running: type
dc→ detail pane with "Start Docker Desktop" action. - Start Docker Desktop; retry
dc→ see container list with status emoji. - Create container:
docker run -d --name yoki-smoke alpine sleep 1000. Refreshdc— seeyoki-smoke. - Enter on
yoki-smoke— HUD says "Stopped". Enter again — HUD says "Started". - "Logs" action opens terminal with
docker logs -f. - "Shell" action opens terminal attached to the container.
- Remove:
docker rm -f yoki-smoke. dc images— shows images; "Copy tag" copiesrepo:tag.dc prune— HUD "Typedc prune yesto confirm".dc prune yes— HUD "Prune complete — reclaimed N B".