mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 15:28:54 +00:00
Release v0.9.0
This commit is contained in:
parent
36b793408b
commit
eb081e5dfa
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,可以让应用的部署、测试和分发都变得前所未有的高效和轻松!
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user