Merge pull request #148 from hkKimWu/master

Fix missing comma
This commit is contained in:
Baohua Yang 2017-01-13 17:07:31 +08:00 committed by GitHub
commit 5e6073f46e

View File

@ -45,5 +45,5 @@ CMD service nginx start
正确的做法是直接执行 `nginx` 可执行文件,并且要求以前台形式运行。比如:
```Dockerfile
CMD ["nginx" "-g" "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]
```