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

@@ -40,6 +40,7 @@ $ podman machine start
#### 运行容器
```bash
## $ docker run -d -p 80:80 nginx:alpine
$ podman run -d -p 80:80 nginx:alpine
@@ -62,6 +63,7 @@ $ podman build -t myimage .
Docker 不同Podman 支持Pod的概念 (类似于 Kubernetes Pod)允许你在同一个网络命名空间中运行多个容器
```bash
## 创建一个 Pod
$ podman pod create --name mypod -p 8080:80
@@ -84,6 +86,7 @@ $ alias docker=podman
Podman 可以生成 systemd 单元文件让容器像普通系统服务一样管理
```bash
## 创建容器
$ podman run -d --name myweb -p 8080:80 nginx