Fixed outdated content

Signed-off-by: Kang HuaiShuai <khs1994@khs1994.com>
This commit is contained in:
Kang HuaiShuai 2019-09-20 16:51:04 +08:00
parent f260e3ba88
commit 224fbe9fed
No known key found for this signature in database
GPG Key ID: 0A380828B1C243A7
5 changed files with 7 additions and 7 deletions

View File

@ -156,11 +156,11 @@
* [CentOS](appendix/repo/centos.md)
* [Nginx](appendix/repo/nginx.md)
* [PHP](appendix/repo/php.md)
* [Node.js](appendix/repo/nodejs.md)
* [MySQL](appendix/repo/mysql.md)
* [WordPress](appendix/repo/wordpress.md)
* [MongoDB](appendix/repo/mongodb.md)
* [Redis](appendix/repo/redis.md)
* [Node.js](appendix/repo/nodejs.md)
* [附录三Docker 命令查询](appendix/command/README.md)
* [附录四Dockerfile 最佳实践](appendix/best_practices.md)
* [附录五如何调试 Docker](appendix/debug.md)

View File

@ -11,7 +11,7 @@
在项目中创建一个 Dockerfile
```bash
FROM node:9
FROM node:12
# replace this with your application's default port
EXPOSE 8888
```
@ -31,7 +31,7 @@ $ docker run -it --rm \
# -v "$(pwd)":/usr/src/myapp \
--mount type=bind,src=`$(pwd)`,target=/usr/src/myapp \
-w /usr/src/myapp \
node:9-alpine \
node:12-alpine \
node your-daemon-or-script.js
```

View File

@ -1,7 +1,7 @@
# CI/CD
持续集成(Continuous integration)是一种软件开发实践每次集成都通过自动化的构建包括编译发布自动化测试来验证从而尽早地发现集成错误
**持续集成(Continuous integration)** 是一种软件开发实践每次集成都通过自动化的构建包括编译发布自动化测试来验证从而尽早地发现集成错误
持续部署continuous deployment是通过自动化的构建测试和部署循环来快速交付高质量的产品
**持续部署(continuous deployment)** 是通过自动化的构建测试和部署循环来快速交付高质量的产品
`Jenkins` 不同的是基于 Docker CI/CD 每一步都运行在 Docker 镜像所以理论上支持所有的编程语言
`Jenkins` 不同的是基于 Docker CI/CD 每一步都运行在 Docker 容器所以理论上支持所有的编程语言

View File

@ -86,7 +86,7 @@ $ git push origin master
打开我们部署好的 `Drone` 网站或者 Drone Cloud即可看到构建结果
![](.image/drone-build.png)
![](_images/drone-build.png)
当然我们也可以把构建结果上传到 GitHubDocker Registry云服务商提供的对象存储或者生产环境中

View File

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB