没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
Version: v18.09 (6172afc) 1
Some rights reserved. No part of this publication may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, electronic,
mechanical or photocopying, recording, or otherwise, for commercial purposes
without the prior permission of the publisher.
This work is licensed under the Creative Commons
Attribution-NonCommercial-NoDerivs 3.0 Unported License. To view a copy of
this license, visit here.
© Copyright 2015 - James Turnbull <james@lovedthanlost.net>
Contents
Page
Foreword 1
Who is this book for? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
A note about versions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Credits and Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . 1
Technical Reviewers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Scott Collier . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
John Ferlito . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Pris Nasrat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Technical Illustrator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Proofreader . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Conventions in the book . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Code and Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Colophon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Errata . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Chapter 1 Introduction 6
Introducing Docker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
An easy and lightweight way to model reality . . . . . . . . . . . . . 8
A logical segregation of duties . . . . . . . . . . . . . . . . . . . . . . 8
Fast, ecient development life cycle . . . . . . . . . . . . . . . . . . 9
Encourages service oriented architecture . . . . . . . . . . . . . . . . 9
Docker components . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Docker client and server . . . . . . . . . . . . . . . . . . . . . . . . . . 10
i
Contents
Docker images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Registries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Containers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Compose, Swarm and Kubernetes . . . . . . . . . . . . . . . . . . . . 14
What can you use Docker for? . . . . . . . . . . . . . . . . . . . . . . . . . 14
Docker with conguration management . . . . . . . . . . . . . . . . . . . 15
Docker’s technical components . . . . . . . . . . . . . . . . . . . . . . . . . 16
What’s in the book? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
Docker resources . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Chapter 2 Installing Docker 19
Requirements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Installing on Ubuntu and Debian . . . . . . . . . . . . . . . . . . . . . . . 21
Checking for prerequisites . . . . . . . . . . . . . . . . . . . . . . . . . 22
Installing Docker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
Docker and UFW . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Installing on Red Hat and family . . . . . . . . . . . . . . . . . . . . . . . 27
Checking for prerequisites . . . . . . . . . . . . . . . . . . . . . . . . . 28
Installing Docker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Starting the Docker daemon on the Red Hat family . . . . . . . . . . 31
Docker for Mac . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
Installing Docker for Mac . . . . . . . . . . . . . . . . . . . . . . . . . 33
Testing Docker for Mac . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
Docker for Windows installation . . . . . . . . . . . . . . . . . . . . . . . . 34
Installing Docker for Windows . . . . . . . . . . . . . . . . . . . . . . 35
Testing Docker for Windows . . . . . . . . . . . . . . . . . . . . . . . . 36
Using Docker on OSX and Windows with this book . . . . . . . . . . . . 36
Docker installation script . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Binary installation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
The Docker daemon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
Conguring the Docker daemon . . . . . . . . . . . . . . . . . . . . . 40
Checking that the Docker daemon is running . . . . . . . . . . . . . 42
Upgrading Docker . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Docker user interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
Version: v18.09 (6172afc) ii
剩余399页未读,继续阅读
资源评论
- zhiyazw2022-04-27不错不错,这个是最新版
z2w1990
- 粉丝: 0
- 资源: 14
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功