修改 OR 为注释.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-05-20 16:28:24 +08:00
parent 8b520b8451
commit 1ff907d20a
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ sudo systemctl restart docker
# 切换当前会话到新 group 或者重启 X 会话
# 注意,这一步是必须的,否则因为 groups 命令获取到的是缓存的组信息,刚添加的组信息未能生效,所以 docker images 执行时同样有错。
newgrp docker
OR
# 或者
pkill X
```
@ -76,7 +76,7 @@ Docker 的主要管理对象是镜像和容器,镜像是静态对象,保存
如果每次都使用 run 命令从同一个镜像创建容器,会发现两个容器是完全一样的,因为他们都有相同的起始点。容器使用后,会保存当前的使用状态,但如果希望将其当前状态保存成镜像,可以使用 commit 命令。
*image name 为 \<repository\>:\<tag\> 这种形式。*
*注意:以下 image name 为 \<repository\>:\<tag\> 这种形式。*
*建议先配置使用镜像源。*