How to upload docker Image using harbor
Editor to share with you how to use harbor to upload docker images. I hope you will get something after reading this article. Let's discuss it together.
Client components access harbor through https:
1. Get ready to access the root certificate of harbor, ip address of harbor, port number, user name, password, project
2. Create the following directory on the client, and copy the root certificate to this directory
/ etc/docker/certs.d/ {harbor ip}: {port} /
Upload image to harbor:
1. If there are only mirrored tar files, load to the local docker repository first.
Docker load-I {tar file}
Obtain the name and TAG of the image from the command output, as shown in the following example:
$docker load-I fedora.tar
Loaded image: fedora:rawhide
Loaded image: fedora:20
2. Label each image
Docker tag {image name}: {tag} {harbor ip}: {port} / {harbor project} / {image name}: {tag}
3. Log in to harbor
Docker login-u {username}-p {password} {harbor ip}: {port}
4. Upload image
Docker push {harbor ip}: {port} / {harbor project} / {image name}: {tag}
After reading this article, I believe you have a certain understanding of "how to upload docker images using harbor". If you want to know more about it, you are welcome to follow the industry information channel. Thank you for reading!