Skip to content

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.

VerbRunsPurpose
deliverlocal + remotepush then pull.
pushlocalBuild and push image.
pullremotePull image on every host.
createlocalSet up a buildx builder.
removelocalTear down the buildx builder.
detailslocalInspect the buildx builder.
devlocalBuild a dev-tagged image for local use.

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 push command that will run (--dry-run).
  • Build on CI and push without deploying.
  • Pull a fresh image onto every host without advancing versions.