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 processExamples
load image from public URL:
$ hyper load -i http://<bucket>.s3.amazonaws.com/public/helloworld.tarload image with quiet mode:
$ hyper load -q -i http://<bucket>.s3.amazonaws.com/public/helloworld.tarload image from compressed archive:
$ hyper load -i http://<bucket>.s3.amazonaws.com/public/helloworld.tar.gzload 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 pullto pull the base image first beforehyper load, will speed up the load progress.
Last updated