Documentation
¶
Overview ¶
Package images provides CLI commands for managing Docker images on Arcane servers.
This package implements the "arcane images" command group, which includes subcommands for listing, inspecting, pulling, removing, pruning, and uploading Docker images.
Available Commands ¶
- list: List all images with optional filtering and pagination
- get: Get detailed information about a specific image
- pull: Pull an image from a container registry
- remove: Remove an image from the server
- prune: Remove unused images to reclaim disk space
- counts: Display image usage statistics
- upload: Upload a Docker image from a tar archive
- updates: Check for image updates
Example Usage ¶
# List all images arcane images list # Pull an image arcane images pull nginx:latest # Get image details arcane images get sha256:abc123... # Remove unused images arcane images prune
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ImagesCmd = &cobra.Command{ Use: "images", Aliases: []string{"image", "i"}, Short: "Manage images", }
ImagesCmd is the parent command for image operations
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.