Command Line Tools
wheels deploy build
Docker image lifecycle. Most build verbs run locally on the control machine; only pull fans out to every host.
| Verb | Runs | Purpose |
|---|---|---|
deliver | local + remote | push then pull. |
push | local | Build and push image. |
pull | remote | Pull image on every host. |
create | local | Set up a buildx builder. |
remove | local | Tear down the buildx builder. |
details | local | Inspect the buildx builder. |
dev | local | Build a dev-tagged image for local use. |
When to use these directly
Section titled “When to use these directly”wheels deploy already calls push and pull as part of the rolling flow. Reach for build verbs directly when you want to:
- Preview the exact
docker build/docker pushcommand that will run (--dry-run). - Build on CI and push without deploying.
- Pull a fresh image onto every host without advancing versions.