docker_practice/basic_concept/repository.md
2014-09-23 13:14:45 +08:00

10 lines
600 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

##docker仓库
仓库是集中存放镜像文件的场所分为公有仓库和私有仓库2种形式。
公有仓库,目前仅有[Docker Hub](https://hub.docker.com),提供了一个数量庞大的镜像库供用户下载。当然,用户也可以在本地网络内创建一个私有仓库。
当用户创建了自己的镜像之后就可以使用push命令将它上传到公有或者私有仓库这样下次在另外一台机器上使用这个镜像时候只需要从仓库上pull下来就可以了。
*Docker Hub的功能跟GitHub类似push和pull操作跟git的操作类似。