Skip to content

Latest commit

 

History

History
110 lines (77 loc) · 2.42 KB

README.md

File metadata and controls

110 lines (77 loc) · 2.42 KB

acti-pinner-go

Go Reference Go Report Card Go Version GitHub License Docker Image Version Docker Image Version

Build

To build the acti-pinner binary locally, pick one of:

$ make build/containerd
$ make build/dockershim

OCI Images

To build all images:

$ make OWNER=... image

Modify the OWNER variable accordingly (it defaults to $USER).

To build the image for a specific tag:

$ make OWNER=... image/containerd
$ make OWNER=... image/dockershim

Push to Local Registry

You may pass in a LOCAL_REGISTRY variable to point to your local registry's HOST:PORT.

Apart from that, as above, to push them all:

$ make OWNER=... LOCAL_REGISTRY=... push-local

Or to push the image of a specific build tag:

$ make OWNER=... LOCAL_REGISTRY=... push-local/containerd
$ make OWNER=... LOCAL_REGISTRY=... push-local/dockershim

Push to Public Registry

You may push them to a public registry one-by-one; e.g.:

$ make OWNER=... push-public/containerd

The PUBLIC_REGISTRY variable contains the registry's URL, and defaults to docker.io.