docker如何push镜像到docker hub个人的仓库

 

step1——找到本地镜像的ID:docker images

step2——登陆Hub:docker login --username=username --password=password --email=email

step3——tag:docker tag <imageID> <namespace>/<image name>:<version tag eg latest>

step4——push镜像:docker push <namespace>/<image name>

 

 

可以参考: https://docs.docker.com/docker-hub/

相关文章:

  • 2021-12-04
  • 2021-07-04
  • 2021-07-19
  • 2022-01-25
  • 2021-08-05
  • 2021-05-31
猜你喜欢
  • 2022-12-23
  • 2021-08-17
  • 2021-12-27
  • 2022-12-23
  • 2021-11-17
相关资源
相似解决方案