
skopeo
List of commands for skopeo:
-
skopeo:tldr:2668b skopeo: Log in to a registry.$ skopeo login --username ${username} ${registry_hostname}try on your machineexplain this command
-
skopeo:tldr:3485b skopeo: Copy an image from one registry to another.$ skopeo copy docker://${source_registry}/${image:tag} docker://${destination_registry}/${image:tag}try on your machineexplain this command
-
skopeo:tldr:48a17 skopeo: List available tags for a remote image.$ skopeo list-tags docker://${registry_hostname}/${image}try on your machineexplain this command
-
skopeo:tldr:6d0fc skopeo: Download an image from a registry.$ skopeo copy docker://${registry_hostname}/${image:tag} dir:${path-to-directory}try on your machineexplain this command
-
skopeo:tldr:71d4c skopeo: Inspect a remote image from a registry.$ skopeo inspect docker://${registry_hostname}/${image:tag}try on your machineexplain this command
-
skopeo:tldr:bdaa2 skopeo: Delete an image from a registry.$ skopeo delete docker://${registry_hostname}/${image:tag}try on your machineexplain this command