push
Usage: hyper push [OPTIONS] NAME[:TAG]
Push an image or a repository to the registry
  --disable-content-trust=true   Skip image signing
  --help=false                   Print usageUse hyper push to share your images to the Docker Hub registry or to a self-hosted one.
Examples
Push a new image to a registry
First save the new image by finding the container ID (using [hyper ps -a] and then committing it to a new image name. Note that only a-z0-9-_. are allowed when naming images:
$ hyper commit 50d6ab76a13a user/testimage:v1Now, push the image to the registry using the image ID. In this example the registry is Docker Hub.
$ hyper push user/testimage:v1Check that this worked by running:
$ hyper imagesYou should see user/testimage:v1 listed.
Last updated
