Docker上传镜像到Harbor仓库

首先登录Harbor仓库,因为我已经登录过了,所以出现的是下面的图片

image

登录成功之后,我们查看目前有的镜像,并将下面镜像进行上传

docker images
image

先打一个tag,然后再推上去

docker tag springboot/spring-boot-docker:latest 192.168.x.240/test_dev/spring-boot
image
docker push 192.168.x.240/test_dev/spring-boot
image

可以在Harbor仓库中看到推的镜像了

image

拉取:

image

你可能感兴趣的:(Docker上传镜像到Harbor仓库)