仓库管理

2020-11-24  本文已影响0人  W朱珠W

注册

在 https://hub.docker.com 免费注册一个 Docker 账号。

登录和退出

登录需要输入用户名和密码,登录成功后,我们就可以从 docker hub 上拉取自己账号下的全部镜像。

[root@web1 ~]# docker login

Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.

Username: liuzhu

Password:

WARNING! Your password will be stored unencrypted in /root/.docker/config.json.

Configure a credential helper to remove this warning. See

https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded

[root@web1 ~]# docker logout

Removing login credentials for https://index.docker.io/v1/

拉取镜像

你可以通过 docker search 命令来查找官方仓库中的镜像,并利用 docker pull 命令来将它下载到本地。

以 ubuntu 为关键词进行搜索:

$ docker search ubuntu

使用 docker pull 将官方 ubuntu 镜像下载到本地:

$ docker pull ubuntu

推送镜像

用户登录后,可以通过 docker push 命令将自己的镜像推送到 Docker Hub。

以下命令中的 username 请替换为你的 Docker 账号用户名。

[root@web1 ~]# docker push liuzhu/ubuntu:v2

The push refers to repository [docker.io/liuzhu/ubuntu]

fe67fbbebf69: Pushed

cc9d18e90faa: Mounted from library/ubuntu

0c2689e3f920: Mounted from library/ubuntu

47dde53750b4: Mounted from library/ubuntu

v2: digest: sha256:fe138795ff6650245e613805fd401807ab37e3c84d0f9689ca780c64810acd1e size: 1155

上一篇下一篇

猜你喜欢

热点阅读