Go to file
philipz 9ecb1194ca Update README.md 2014-11-18 13:32:24 +08:00
_images rewrite the introduction of advanced network chapter; redraw the figure 2014-09-18 13:07:31 +08:00
_local Minor update ignore file; Add pull_all and push_all scripts 2014-10-30 15:30:51 +08:00
advanced_network 添加遗漏字 2014-11-06 09:06:49 +08:00
appendix_command Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
appendix_repo Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
appendix_resources Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
basic_concept minor fix space; delete useless file 2014-10-21 13:59:03 +08:00
cases 修改"虚拟机"为"容器" 2014-11-06 09:47:21 +08:00
container Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
data_management Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
dockerfile 删除多余字 2014-11-06 10:16:10 +08:00
image 修改语句描述 2014-11-05 12:47:29 +08:00
install minor fix space; delete useless file 2014-10-21 13:59:03 +08:00
introduction minor fix space; delete useless file 2014-10-21 13:59:03 +08:00
network Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
repository Merge branch 'master' of github.com:yeasy/docker_practice 2014-11-07 15:27:30 +08:00
security Merge branch 'master' of github.com:yeasy/docker_practice 2014-11-07 15:27:30 +08:00
underly 修改标点符号 2014-11-06 10:58:28 +08:00
.gitignore Update ignore type list 2014-11-07 15:42:25 +08:00
README.md Update README.md 2014-11-18 13:32:24 +08:00
SUMMARY.md minor fix space; delete useless file 2014-10-21 13:59:03 +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.9

Docker 是個偉大的項目,它徹底釋放了虛擬化的,讓應用的分發、部署和管理都變得前所未有的高效和輕鬆!

本書既適用於具備基礎 Linux 知識的 Docker 初學者,也可供希望理解原理和實現的高級用戶參考。同時,書中給出的實踐案例,可供在進行實際部署時借鑒。

本書源於 WaitFish 的《Docker 學習手冊 v1.0》內容。後來,yeasy 根據最新 Docker 版本對內容進行了修訂和重寫,並增加內容;經協商將所有內容開源,採用互聯網合作的方式進行維護。

前六章為基礎內容,供使用者理解 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
    • 添加基本內容;
    • 修正錯別字和表達不通順的地方。

參加步驟

  • 在 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