swm images
List Docker images discoverable for a provider, parsed live from the provider’s image registry. Useful for picking a tag with a specific CUDA toolkit or PyTorch version.
Subcommands
Section titled “Subcommands”| Command | Description |
|---|---|
images list | List images for a provider, sorted newest-first |
images list
Section titled “images list”| Option | Description |
|---|---|
-p, --provider | Provider to query (default: runpod) |
--cuda X.Y | Filter to images matching CUDA major.minor |
--refresh | Bypass the local cache and re-query the registry |
-n, --limit | Max rows to show (default: 20) |
--all | Show every image |
Examples
Section titled “Examples”swm images list # all RunPod pytorch imagesswm images list -p runpod --cuda 12.8 # only CUDA 12.8 imagesswm images list -p runpod --cuda 11.8 -n 5 # top 5swm images list --refresh # bypass cacheThe output table shows Tag, CUDA, Torch, Ubuntu, and Updated columns. Pick a tag and pass it to swm pod create --image <tag>, or skip this step entirely and pass --cuda <X.Y> to pod create — swm will resolve to the newest matching tag automatically.
Provider coverage
Section titled “Provider coverage”swm only resolves images for providers that publish a Docker Hub catalog (currently RunPod). For other providers, pass --image directly to swm pod create.
Related
Section titled “Related”swm gpus— surfaces each GPU’s minimum CUDA in the result tableswm pod create --cuda— auto-resolves to a compatible image- CUDA & image compatibility — concept overview