Add blank lines before headers

This commit is contained in:
yeasy
2026-03-21 12:57:51 -07:00
parent 0648f63979
commit 312f8fea42
76 changed files with 411 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ $ docker run -d -p 8080:80 my-hello-world
停止并删除容器
```bash
## 查看正在运行的容器 ID
$ docker ps

View File

@@ -71,10 +71,12 @@ Docker 镜像包含了应用运行所需的 **一切**:代码、运行时、
- 新人入职一条命令就能启动开发环境
```bash
## 新同事入职第一天
$ git clone https://github.com/company/project.git
$ docker compose up
## 完整的开发环境就准备好了
...