Command Line Tools
wheels deploy app
App container lifecycle. Every verb targets containers labelled with the current service, optionally filtered by --role.
| Verb | Purpose |
|------|---------|
| boot | docker run new containers for the given version. |
| start | docker start existing stopped containers. |
| stop | docker stop running containers. |
| details | docker inspect for the given version's containers. |
| containers | docker ps filtered by service label. |
| images | docker images for the app image. |
| logs | docker logs across every host. |
| live | Clear the maintenance marker file. |
| maintenance | Write the maintenance marker file. |
| remove | Stop + remove containers for the given version. |
Common flags
Section titled “Common flags”| Flag | Description |
|------|-------------|
| --release=<v> | Required for boot/start/stop/details/live/maintenance/remove. |
| --role=<name> | Limit to one role. Default: all roles. |
| --destination=<name> | Overlay destination config. |
| --dry-run | Print commands without executing. |