Go to file
Baohua Yang 9d26f96ba2 Merge branch 'master' of github.com:yeasy/docker_practice 2014-10-12 10:32:14 +08:00
_images rewrite the introduction of advanced network chapter; redraw the figure 2014-09-18 13:07:31 +08:00
_local Modify the import of bash file 2014-09-26 20:33:00 +08:00
advanced_network Add the section of network config file 2014-09-18 17:38:42 +08:00
appendix_command minor change, add dockerpool link 2014-09-30 13:39:19 +08:00
appendix_repo Add new chapters to introduce the popular repositories 2014-09-27 16:06:08 +08:00
appendix_resources Add dockerfile chapter 2014-10-10 17:30:53 +08:00
basic_concept Add more details to help understand repo and registry 2014-10-03 11:41:22 +08:00
cases Remove the local repo case, add its content into the image and repository sections 2014-09-22 16:40:18 +08:00
container Modify the import of bash file 2014-09-26 20:33:00 +08:00
data_management Fix: change --volumne--from to --volumnes-from 2014-09-24 13:10:32 +08:00
dockerfile fix expose 2014-10-11 16:18:19 +08:00
image User new dockerpool repo server address 2014-10-12 10:32:04 +08:00
install Note to start docker in ubuntu installation 2014-09-26 14:34:16 +08:00
introduction Add comparison summary with vm 2014-10-03 11:34:57 +08:00
network Rename the network chapter 2014-10-10 09:37:52 +08:00
repository User new dockerpool repo server address 2014-10-12 10:32:04 +08:00
security Rewrite the other security feature part and security summary part 2014-09-22 11:19:52 +08:00
underly Minor changes on content 2014-10-10 09:37:15 +08:00
.gitignore Add .idea and _book directories into gitignore file 2014-09-17 14:59:13 +08:00
README.md User new dockerpool repo server address 2014-10-12 10:32:04 +08:00
SUMMARY.md Add dockerfile chapter 2014-10-10 17:30:53 +08:00
book.json Add the book.json file 2014-09-21 21:32:13 +08:00
cover.jpg Add cover pages 2014-09-21 21:32:42 +08:00
cover_small.jpg Add cover pages 2014-09-21 21:32:42 +08:00

README.md

Docker —— 从入门到实践

v0.2.8

Docker是个伟大的项目,它彻底释放了虚拟化的威力,让应用的分发、部署和管理都变得前所未有的高效和轻松!

本书既适用于具备基础Linux知识的Docker初学者也可供希望理解原理和实现的高级用户参考。同时书中给出的实践案例可供在进行实际部署时借鉴。

本书源于WaitFish的《Docker学习手册v1.0》内容。后来,yeasy 根据最新Docker版本对内容进行了修订和重写并增加了部分内容与WaitFish协商将所有内容开源采用互联网合作的方式进行创作和维护。

前六章为基础内容供用户理解Docker的基本概念和操作7~9章介绍一些高级操作第10章给出典型的应用场景和实践案例11~13章介绍关于Docker实现的相关技术。

最新版本在线阅读:GitBookDockerPool

另外欢迎加入DockerPool QQ群341410255分享Docker资源交流Docker技术。

本书源码在Github上维护欢迎参与 https://github.com/yeasy/docker_practice

感谢所有的贡献者

主要版本历史

  • 0.3: 2014-10-TODO
    • 完成仓库章节;
    • 重写安全章节;
    • 修正底层实现章节的架构、名字空间、控制组、文件系统、容器格式等内容;
    • 添加对常见仓库和镜像的介绍;
    • 添加Dockerfile的介绍。
  • 0.2: 2014-09-18
    • 对照官方文档重写介绍、基本概念、安装、镜像、容器、仓库、数据管理、网络等章节;
    • 添加底层实现章节;
    • 添加命令查询和资源链接章节;
    • 其它修正。
  • 0.1: 2014-09-05
    • 添加pdf文件内容;
    • 修正错别字和表达不通顺的地方。

参加步骤

  • 在GitHub上fork到自己的仓库如docker_user/docker_practice然后clone到本地并设置用户信息。
$ git clone git@github.com:docker_user/docker_practice.git
$ cd docker_practice
$ git config user.name "Docker User"
$ git config user.email docker_user@dockcer.com
  • 修改代码后提交,并推送到自己的仓库。
$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push
  • 在GitHub网站上提交pull request。
  • 定期使用项目仓库内容更新自己仓库内容。
$ git remote add upstream https://github.com/yeasy/docker_practice
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master