image

Container image operations

Usage

apolo image [OPTIONS] COMMAND [ARGS]...

Container image operations.

Commands:

digest

Get digest of an image from remote registry

Usage

apolo 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.

Examples


$ apolo image digest image:/other-project/alpine:shared
$ apolo image digest image:myimage:latest

Options

ls

List images

Usage

apolo image ls [OPTIONS]

List images.

Options

pull

Pull an image from platform registry

Usage

apolo 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.

Examples


$ apolo pull image:myimage
$ apolo pull image:/other-project/alpine:shared
$ apolo pull image:/project/my-alpine:production alpine:from-registry

Options

push

Push an image to platform registry

Usage

apolo 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.

Examples


$ apolo push myimage
$ apolo push alpine:latest image:my-alpine:production
$ apolo push alpine image:/other-project/alpine:shared

Options

rm

Remove image from platform registry

Usage

apolo image rm [OPTIONS] IMAGES...

Remove image from platform registry.

Image name must be URL with image:// scheme. Image name must contain tag.

Examples


$ apolo image rm image:/other-project/alpine:shared
$ apolo image rm image:myimage:latest

Options

size

Get image size

Usage

apolo image size [OPTIONS] IMAGE

Get image size

Image name must be URL with image:// scheme. Image name must contain tag.

Examples


$ apolo image size image:/other-project/alpine:shared
$ apolo image size image:myimage:latest

Options

tags

List tags for image in platform registry

Usage

apolo image tags [OPTIONS] IMAGE

List tags for image in platform registry.

Image name must be URL with image:// scheme.

Examples


$ apolo image tags image:/other-project/alpine
$ apolo image tags -l image:myimage

Options

Last updated