Go to file
Baohua Yang 07edb7e3c1 Update the term to better meaning 2014-09-22 10:56:15 +08:00
_images rewrite the introduction of advanced network chapter; redraw the figure 2014-09-18 13:07:31 +08:00
_local Add the original manual file by waitfish 2014-09-17 15:59:23 +08:00
advanced_network Add the section of network config file 2014-09-18 17:38:42 +08:00
basic_concept Finish the basic version of the basic_concept chapter 2014-09-15 17:36:31 +08:00
cases Fixed the wrong Chinese character 2 2014-09-21 20:50:55 +08:00
command change terminology 2014-09-17 19:36:51 +08:00
container Fix issue#6: clarify the differences between image:save,load and container:export,import 2014-09-19 21:51:21 +08:00
data_management Rewrite the data_management chapter 2014-09-16 13:31:53 +08:00
dockerfile Add image/list.md and dockerfile chapter 2014-09-15 21:51:21 +08:00
image Fix issue#6: clarify the differences between image:save,load and container:export,import 2014-09-19 21:51:21 +08:00
install rename 2014-09-21 13:50:34 +08:00
introduction reduce the technical part 2014-09-18 10:34:52 +08:00
network Change to more accurate expression 2014-09-18 15:55:24 +08:00
repository write the repository chapter content 2014-09-17 20:18:51 +08:00
resources Add two chapters:container and repository 2014-09-15 17:11:22 +08:00
security Update the term to better meaning 2014-09-22 10:56:15 +08:00
underly Write the underly/network chapter 2014-09-21 13:40:10 +08:00
.gitignore Add .idea and _book directories into gitignore file 2014-09-17 14:59:13 +08:00
README.md fix link url 2014-09-22 00:43:50 +08:00
SUMMARY.md Update the term to better meaning 2014-09-22 10:56:15 +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.1

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

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

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

在线阅读:https://www.gitbook.io/book/yeasy/docker_practice

维护本书的Github项目 https://github.com/yeasy/docker_practice。 欢迎参与。

另外欢迎加入Docker QQ群341410255一起交流学习共同提高。

本书发布时Docker的最新版本为1.20。

参加步骤

  • 在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 github.com/yeasy/docker_practice
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master