mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 15:28:54 +00:00
commit
8aa5ac4172
@ -12,7 +12,7 @@ cd ../gitbook
|
|||||||
|
|
||||||
main(){
|
main(){
|
||||||
if [ "$1" = build ];then gitbook build; cp -a _book ../gitbook-src; echo $START; date "+%F %T"; exit 0; fi
|
if [ "$1" = build ];then gitbook build; cp -a _book ../gitbook-src; echo $START; date "+%F %T"; exit 0; fi
|
||||||
gitbook serve
|
exec gitbook serve
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
42
CHANGELOG.md
42
CHANGELOG.md
@ -1,16 +1,8 @@
|
|||||||
## 主要修订记录
|
## 主要修订记录
|
||||||
|
|
||||||
* 0.9: 2017-12-31
|
* 0.9.0: 2017-12-31
|
||||||
|
|
||||||
* 0.9-rc3: 2017-12-30
|
* 0.9.0-rc2: 2017-12-10
|
||||||
|
|
||||||
* 增加 `私有仓库高级配置`
|
|
||||||
|
|
||||||
* 精简示例代码
|
|
||||||
|
|
||||||
* 调整目录结构
|
|
||||||
|
|
||||||
* 0.9-rc2: 2017-12-10
|
|
||||||
|
|
||||||
* 增加 Docker 中文资源链接
|
* 增加 Docker 中文资源链接
|
||||||
* 增加介绍基于 Docker 的 CI/CD 工具 `Drone`
|
* 增加介绍基于 Docker 的 CI/CD 工具 `Drone`
|
||||||
@ -35,7 +27,7 @@
|
|||||||
* 修复内容逻辑错误
|
* 修复内容逻辑错误
|
||||||
* 修复`404` 链接
|
* 修复`404` 链接
|
||||||
|
|
||||||
* 0.9-rc1: 2017-11-29
|
* 0.9.0-rc1: 2017-11-29
|
||||||
|
|
||||||
* 根据最新版本(v17.09)修订内容
|
* 根据最新版本(v17.09)修订内容
|
||||||
|
|
||||||
@ -94,23 +86,23 @@
|
|||||||
|
|
||||||
* 0.3.0: 2014-11-25
|
* 0.3.0: 2014-11-25
|
||||||
|
|
||||||
* 完成仓库章节;
|
* 完成仓库章节
|
||||||
* 重写安全章节;
|
* 重写安全章节
|
||||||
* 修正底层实现章节的架构、命名空间、控制组、文件系统、容器格式等内容;
|
* 修正底层实现章节的架构、命名空间、控制组、文件系统、容器格式等内容
|
||||||
* 添加对常见仓库和镜像的介绍;
|
* 添加对常见仓库和镜像的介绍
|
||||||
* 添加 Dockerfile 的介绍;
|
* 添加 Dockerfile 的介绍
|
||||||
* 重新校订中英文混排格式。
|
* 重新校订中英文混排格式
|
||||||
* 修订文字表达。
|
* 修订文字表达
|
||||||
* 发布繁体版本分支:zh-Hant。
|
* 发布繁体版本分支:zh-Hant
|
||||||
|
|
||||||
* 0.2.0: 2014-09-18
|
* 0.2.0: 2014-09-18
|
||||||
|
|
||||||
* 对照官方文档重写介绍、基本概念、安装、镜像、容器、仓库、数据管理、网络等章节;
|
* 对照官方文档重写介绍、基本概念、安装、镜像、容器、仓库、数据管理、网络等章节
|
||||||
* 添加底层实现章节;
|
* 添加底层实现章节
|
||||||
* 添加命令查询和资源链接章节;
|
* 添加命令查询和资源链接章节
|
||||||
* 其它修正。
|
* 其它修正
|
||||||
|
|
||||||
* 0.1.0: 2014-09-05
|
* 0.1.0: 2014-09-05
|
||||||
|
|
||||||
* 添加基本内容;
|
* 添加基本内容
|
||||||
* 修正错别字和表达不通顺的地方。
|
* 修正错别字和表达不通顺的地方
|
||||||
|
@ -6,17 +6,19 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone git@github.com:docker_user/docker_practice.git
|
$ git clone git@github.com:docker_user/docker_practice.git
|
||||||
|
|
||||||
$ cd docker_practice
|
$ cd docker_practice
|
||||||
$ git config user.name "yourname"
|
|
||||||
$ git config user.email "your email"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
修改代码后提交,并推送到自己的仓库,注意修改提交消息为对应 Issue 号和描述。
|
修改代码后提交,并推送到自己的仓库,注意修改提交消息为对应 Issue 号和描述。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Update the content
|
# Update the content
|
||||||
|
|
||||||
$ git commit -a -s
|
$ git commit -a -s
|
||||||
|
|
||||||
# In commit msg dialog, add content like "Fix issue #235: describe ur change"
|
# In commit msg dialog, add content like "Fix issue #235: describe ur change"
|
||||||
|
|
||||||
$ git push
|
$ git push
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -26,9 +28,11 @@ $ git push
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git remote add upstream https://github.com/yeasy/docker_practice
|
$ git remote add upstream https://github.com/yeasy/docker_practice
|
||||||
|
|
||||||
$ git fetch upstream
|
$ git fetch upstream
|
||||||
$ git checkout master
|
|
||||||
$ git rebase upstream/master
|
$ git rebase upstream/master
|
||||||
|
|
||||||
$ git push -f origin master
|
$ git push -f origin master
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
[![](https://img.shields.io/github/stars/yeasy/docker_practice.svg?style=social&label=Stars)](https://github.com/yeasy/docker_practice) [![](https://img.shields.io/docker/pulls/yeasy/docker_practice.svg)](https://store.docker.com/community/images/yeasy/docker_practice) [![](https://travis-ci.org/yeasy/docker_practice.svg?branch=master)](https://travis-ci.org/yeasy/docker_practice) [![](https://img.shields.io/github/release/yeasy/docker_practice/all.svg)](https://github.com/yeasy/docker_practice/releases) [![](https://badges.gitter.im/docker_practice/Lobby.svg)](https://gitter.im/docker_practice/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[![](https://img.shields.io/github/stars/yeasy/docker_practice.svg?style=social&label=Stars)](https://github.com/yeasy/docker_practice) [![](https://img.shields.io/docker/pulls/yeasy/docker_practice.svg)](https://store.docker.com/community/images/yeasy/docker_practice) [![](https://travis-ci.org/yeasy/docker_practice.svg?branch=master)](https://travis-ci.org/yeasy/docker_practice) [![](https://img.shields.io/github/release/yeasy/docker_practice/all.svg)](https://github.com/yeasy/docker_practice/releases) [![](https://badges.gitter.im/docker_practice/Lobby.svg)](https://gitter.im/docker_practice/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
0.9-rc2(2017-12-09)
|
0.9.0(2017-12-31)
|
||||||
|
|
||||||
*修订说明:本书内容将基于 Docker CE v17.MM 进行重新修订,计划 2017 年底发布 0.9.0 版本。旧版本(Docker 1.13-)内容,请阅读 [docker-legacy](https://github.com/yeasy/docker_practice/tree/docker-legacy) 分支的内容。*
|
*修订说明:本书内容已基于 Docker CE v17.MM 进行了重新修订,2017 年底发布了 0.9.0 版本。旧版本(Docker 1.13-)内容,请阅读 [docker-legacy](https://github.com/yeasy/docker_practice/tree/docker-legacy) 分支的内容。*
|
||||||
|
|
||||||
[Docker](http://www.docker.com) 是个划时代的开源项目,它彻底释放了计算虚拟化的威力,极大提高了应用的运行效率,降低了云计算资源供应的成本!使用 Docker,可以让应用的部署、测试和分发都变得前所未有的高效和轻松!
|
[Docker](http://www.docker.com) 是个划时代的开源项目,它彻底释放了计算虚拟化的威力,极大提高了应用的运行效率,降低了云计算资源供应的成本!使用 Docker,可以让应用的部署、测试和分发都变得前所未有的高效和轻松!
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ RUN apt-get update && apt-get install -y \
|
|||||||
|
|
||||||
### FROM
|
### FROM
|
||||||
|
|
||||||
尽可能使用当前官方仓库作为你构建镜像的基础。推荐使用 [Debian](https://hub.docker.com/_/debian/) 镜像,因为它被严格控制并保持最小尺寸(目前小于 150 mb),但它仍然是一个完整的发行版。
|
尽可能使用当前官方仓库作为你构建镜像的基础。推荐使用 [Alpine](https://hub.docker.com/_/alpine/) 镜像,因为它被严格控制并保持最小尺寸(目前小于 5 MB),但它仍然是一个完整的发行版。
|
||||||
|
|
||||||
### LABEL
|
### LABEL
|
||||||
|
|
||||||
|
@ -96,17 +96,6 @@ $ docker run --network=my-net --ip=172.25.3.3 -itd --name=my-container busybox
|
|||||||
|
|
||||||
注册服务器是存放实际的镜像文件的地方。注册索引则负责维护用户的账号、权限、搜索、标签等的管理。因此,注册服务器利用注册索引来实现认证等管理。
|
注册服务器是存放实际的镜像文件的地方。注册索引则负责维护用户的账号、权限、搜索、标签等的管理。因此,注册服务器利用注册索引来实现认证等管理。
|
||||||
|
|
||||||
### 从非官方仓库(例如 non-official-repo.com)下载镜像时候,有时候会提示“Error: Invalid registry endpoint https://non-official-repo.com/v1/……”?
|
|
||||||
|
|
||||||
答:Docker 自 1.3.0 版本往后,加强了对镜像安全性的验证,需要添加私有仓库证书,或者手动添加对非官方仓库的信任。
|
|
||||||
|
|
||||||
编辑 Docker 配置文件,在其中添加:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
DOCKER_OPTS="--insecure-registry non-official-repo"
|
|
||||||
```
|
|
||||||
之后,重启 Docker 服务即可。
|
|
||||||
|
|
||||||
## 配置相关
|
## 配置相关
|
||||||
|
|
||||||
### Docker 的配置文件放在哪里,如何修改配置?
|
### Docker 的配置文件放在哪里,如何修改配置?
|
||||||
|
@ -14,12 +14,11 @@
|
|||||||
$ docker run --name some-wordpress --link some-mysql:mysql -d wordpress
|
$ docker run --name some-wordpress --link some-mysql:mysql -d wordpress
|
||||||
```
|
```
|
||||||
|
|
||||||
启动 WordPress 容器时可以指定的一些环境参数包括:
|
启动 WordPress 容器时可以指定的一些环境变量包括:
|
||||||
|
|
||||||
* `-e WORDPRESS_DB_USER=...` 缺省为 “root”
|
* `WORDPRESS_DB_USER` 缺省为 `root`
|
||||||
* `-e WORDPRESS_DB_PASSWORD=...` 缺省为连接 mysql 容器的环境变量 `MYSQL_ROOT_PASSWORD` 的值
|
* `WORDPRESS_DB_PASSWORD` 缺省为连接 mysql 容器的环境变量 `MYSQL_ROOT_PASSWORD` 的值
|
||||||
* `-e WORDPRESS_DB_NAME=...` 缺省为 “wordpress”
|
* `WORDPRESS_DB_NAME` 缺省为 `wordpress`
|
||||||
* `-e WORDPRESS_AUTH_KEY=...`, `-e WORDPRESS_SECURE_AUTH_KEY=...`, `-e WORDPRESS_LOGGED_IN_KEY=...`, `-e WORDPRESS_NONCE_KEY=...`, `-e WORDPRESS_AUTH_SALT=...`, `-e WORDPRESS_SECURE_AUTH_SALT=...`, `-e WORDPRESS_LOGGED_IN_SALT=...`, `-e WORDPRESS_NONCE_SALT=...` 缺省为随机 sha1 串
|
|
||||||
|
|
||||||
### Dockerfile
|
### Dockerfile
|
||||||
|
|
||||||
|
20
bin/offline
Executable file
20
bin/offline
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f offline ];then echo "请在项目根目录执行 $0"; exit 1; fi
|
||||||
|
|
||||||
|
command -v docker-compose > /dev/null 2>&1
|
||||||
|
|
||||||
|
if [ $? != 0 ];then echo "请安装 docker-compose"; exit 1; fi
|
||||||
|
|
||||||
|
if [ "$1" = update ];then
|
||||||
|
status=`git status -s`
|
||||||
|
if [ -z "$status" ];then
|
||||||
|
git fetch --depth=1 origin master
|
||||||
|
git reset --hard origin/master
|
||||||
|
else
|
||||||
|
echo "您已修改项目,请提交或恢复原状!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
docker-compose up server
|
@ -67,7 +67,7 @@ Kubernetes 校验节点可用依赖于 ID。在当前的版本中,有两个接
|
|||||||
## 容器组
|
## 容器组
|
||||||
|
|
||||||
在 Kubernetes 中,使用的最小单位是容器组,容器组是创建,调度,管理的最小单位。
|
在 Kubernetes 中,使用的最小单位是容器组,容器组是创建,调度,管理的最小单位。
|
||||||
一个容器组使用相同的 Dokcer 容器并共享卷(挂载点)。一个容器组是一个特定运用的打包集合,包含一个或多个容器。
|
一个容器组使用相同的 Docker 容器并共享卷(挂载点)。一个容器组是一个特定运用的打包集合,包含一个或多个容器。
|
||||||
|
|
||||||
和运行的容器类似,一个容器组被认为只有很短的运行周期。容器组被调度到一组节点运行,知道容器的生命周期结束或者其被删除。如果节点死掉,运行在其上的容器组将会被删除而不是重新调度。(也许在将来的版本中会添加容器组的移动)。
|
和运行的容器类似,一个容器组被认为只有很短的运行周期。容器组被调度到一组节点运行,知道容器的生命周期结束或者其被删除。如果节点死掉,运行在其上的容器组将会被删除而不是重新调度。(也许在将来的版本中会添加容器组的移动)。
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user