flyer520docker镜像下载和上传实例:

1,注册docker-hub账号。在https://hub.docker.com/网站注册。

注:我的账号是flyer520,邮箱12700696@qq.com

 

2步,linux登录docker测试。

我的账号:dockerlogin  --username=flyer520  --email=12700696@qq.com  (登录OK)

查看登录信息:cat  ~/.docker/config.json

 

3步,下载docker镜像。

docker  pull busybox

docker  pull  nginx

docker  p_w_picpaths

 

4步,修改标签(重设标签)

测试1:修改nginx标签,并push上传到flyer520docker-hub中。

docker  tag  nginx  flyer520/nginx

docker  push flyer520/nginx

 

测试2:修改busybox标签,并push上传到flyer520docker-hub中。

docker  tag  busybox  flyer520/busybox

docker  push flyer520/busybox

 

验证:登录到docker-hub,查看是否多了nginx镜像。

 从个人docker_hub上传_下载镜像_push