add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/linux/dockerd.md Normal file
View File

@@ -0,0 +1,24 @@
# dockerd
> 一个持久进程,用于启动和管理 Docker 容器。
> 更多信息:<https://docs.docker.com/reference/cli/dockerd/>.
- 运行 Docker 守护进程:
`dockerd`
- 运行 Docker 守护进程并配置其监听特定套接字UNIX 和 TCP
`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}`
- 使用特定的守护进程 PID 文件运行:
`dockerd --pidfile {{path/to/pid_file}}`
- 以调试模式运行:
`dockerd --debug`
- 运行并设置特定的日志级别:
`dockerd --log-level {{debug|info|warn|error|fatal}}`