load

load

Usage:    hyper load [OPTIONS]

Load a local image or a tar file

  --help             Print usage
  -i, --input        Read from a local or remote archive file compressed with gzip, bzip, or xz, instead of STDIN
  -l, --local        Read from a local image
  -q, --quiet        Do not show load process

Examples

load image from public URL:

 $ hyper load -i http://<bucket>.s3.amazonaws.com/public/helloworld.tar

load image with quiet mode:

 $ hyper load -q -i http://<bucket>.s3.amazonaws.com/public/helloworld.tar

load image from compressed archive:

 $ hyper load -i http://<bucket>.s3.amazonaws.com/public/helloworld.tar.gz

load multiple images:

load image from s3 pre-signed URL:

load image with basic auth:

load image from STDIN: (similar with push, only upload the diff)

load image from local tar archive file: (similar with push, only upload the diff)

load a local image: (similar with push, only upload the diff)

Notes

  • Loading multiple images from local is not supported.

  • The image size is limited to 4GB.

Best Practice

  • Use hyper pull to pull the base image first before hyper load, will speed up the load progress.

Last updated