美文网首页
docker学习--第九章:获取和推送镜像

docker学习--第九章:获取和推送镜像

作者: fada492daf5b | 来源:发表于2018-06-29 11:23 被阅读0次
查找镜像
docker search [OPTIONS] TERM

--automated=false Only show automated builds
--no-trunc=false Don't truncate output
-s, --starts=0 Only displays with at least x stars
最多返回25个结果

拉取镜像
docker pull [OPTIONS] NAME[:TAG]
-a, --all-tags=false Download all tagged images in the repository

使用 --registry-mirror选项快速拉取
1.修改:/etc/default/docker
2.添加:DOCKER_OPTS= "--registry-mirror=http://MIRROR-ADDR"

推送镜像
docker images push test/nginx 

相关文章

网友评论

      本文标题:docker学习--第九章:获取和推送镜像

      本文链接:https://www.haomeiwen.com/subject/kljoyftx.html