Fix bash comment style to single hash

This commit is contained in:
yeasy
2026-04-08 22:39:51 -07:00
parent a699ab2e44
commit d1399c2fa5
4 changed files with 29 additions and 29 deletions
+3 -3
View File
@@ -60,15 +60,15 @@ $ docker run -d -p 8080:80 my-hello-world
停止并删除容器
```bash
## 查看正在运行的容器 ID
# 查看正在运行的容器 ID
$ docker ps
## 停止容器
# 停止容器
$ docker stop <CONTAINER_ID>
## 删除容器
# 删除容器
$ docker rm <CONTAINER_ID>
```