image
Container image operations
neuro image [OPTIONS] COMMAND [ARGS]...
Container image operations.
Commands:
Get digest of an image from remote registry
neuro image digest [OPTIONS] IMAGE
Get digest of an image from remote registry
Image name must be
URL
with image:// scheme. Image name must contain tag.
$ neuro image digest image:/other-project/alpine:shared
$ neuro image digest image:myimage:latest
Name | Description |
---|---|
--help | Show this message and exit. |
List images
neuro image ls [OPTIONS]
List images.
Name | Description |
---|---|
--help | Show this message and exit. |
--all-orgs | Show images in all orgs. |
--all-projects | Show images in all projects. |
--cluster CLUSTER | Show images on a specified cluster (the current cluster by default). |
-l | List in long format. |
--full-uri | Output full image URI. |
-n, --name PATTERN | Filter out images by name regex. |
--org ORG | Filter out images by org (multiple option, the current org by default). |
--project PROJECT | Filter out images by project (multiple option, the current project by default). |
Pull an image from platform registry
neuro image pull [OPTIONS] REMOTE_IMAGE [LOCAL_IMAGE]
Pull an image from platform registry.
Remote image name must be
URL
with image:// scheme. Image names can contain tag.
$ neuro pull image:myimage
$ neuro pull image:/other-project/alpine:shared
$ neuro pull image:/project/my-alpine:production alpine:from-registry
Name | Description |
---|---|
--help | Show this message and exit. |
Push an image to platform registry
neuro image push [OPTIONS] LOCAL_IMAGE [REMOTE_IMAGE]
Push an image to platform registry.
Remote image must be
URL
with image:// scheme. Image names can contain tag. If tags not specified 'latest' will be used as value.
$ neuro push myimage
$ neuro push alpine:latest image:my-alpine:production
$ neuro push alpine image:/other-project/alpine:shared
Name | Description |
---|---|
--help | Show this message and exit. |
Remove image from platform registry
neuro image rm [OPTIONS] IMAGES...
Remove image from platform registry.
Image name must be
URL
with image:// scheme. Image name must contain tag.
$ neuro image rm image:/other-project/alpine:shared
$ neuro image rm image:myimage:latest
Name | Description |
---|---|
--help | Show this message and exit. |
-f | Force deletion of all tags referencing the image. |
Get image size
neuro image size [OPTIONS] IMAGE
Get image size
Image name must be
URL
with image:// scheme. Image name must contain tag.
$ neuro image size image:/other-project/alpine:shared
$ neuro image size image:myimage:latest
Name | Description |
---|---|
--help | Show this message and exit. |
List tags for image in platform registry
neuro image tags [OPTIONS] IMAGE
List tags for image in platform registry.
Image name must be
URL
with image:// scheme.
$ neuro image tags image:/other-project/alpine
$ neuro image tags -l image:myimage
Name | Description |
---|---|
--help | Show this message and exit. |
-l | List in long format, with image sizes. |
Last modified 5mo ago