Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.47 KB

File metadata and controls

36 lines (27 loc) · 1.47 KB

Yoki Docker Plugin

Control Docker containers and images from Yoki.

Usage

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

Per-container actions

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.

Requirements

Docker Desktop (Windows) with the daemon running. If missing, the plugin tells you.

Manual test checklist

  1. Install the plugin (copy folder to Yoki plugins dir or symlink).
  2. In Yoki, type plugins → verify "Docker" appears, enabled.
  3. If Docker Desktop NOT running: type dc → detail pane with "Start Docker Desktop" action.
  4. Start Docker Desktop; retry dc → see container list with status emoji.
  5. Create container: docker run -d --name yoki-smoke alpine sleep 1000. Refresh dc — see yoki-smoke.
  6. Enter on yoki-smoke — HUD says "Stopped". Enter again — HUD says "Started".
  7. "Logs" action opens terminal with docker logs -f.
  8. "Shell" action opens terminal attached to the container.
  9. Remove: docker rm -f yoki-smoke.
  10. dc images — shows images; "Copy tag" copies repo:tag.
  11. dc prune — HUD "Type dc prune yes to confirm".
  12. dc prune yes — HUD "Prune complete — reclaimed N B".