dockerd: add short/long options (#21840)

This commit is contained in:
Nelson Figueroa
2026-04-02 12:19:23 +07:00
committed by GitHub
parent 957251767a
commit 3e256d78e9
3 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -9,16 +9,16 @@
- قم بتشغيل دوكر في الخلفية واجعله يستمع علي منفذ معين (يونكس وبروتوكول ضبط الإرسال):
`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}`
`dockerd {{[-H|--host]}} unix://{{path/to/tmp.sock}} {{[-H|--host]}} tcp://{{ip}}`
- قم بتشغيل دوكر في الخلفية برقم عملية معين:
`dockerd --pidfile {{path/to/pid_file}}`
`dockerd {{[-p|--pidfile]}} {{path/to/pid_file}}`
- قم بتشغيل دوكر في وضع التصحيح واكتشاف الأخطاء:
`dockerd --debug`
`dockerd {{[-D|--debug]}}`
- قم بتشغيل دوكر وحدد له مستوي سجل معين:
`dockerd --log-level {{debug|info|warn|error|fatal}}`
`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`
+4 -4
View File
@@ -9,16 +9,16 @@
- Docker 데몬을 실행하고 특정 소켓(UNIX 및 TCP)을 수신하도록 설정:
`dockerd --host unix://{{경로/대상/tmp.sock}} --host tcp://{{IP}}`
`dockerd {{[-H|--host]}} unix://{{경로/대상/tmp.sock}} {{[-H|--host]}} tcp://{{IP}}`
- 특정 데몬 PID 파일로 실행:
`dockerd --pidfile {{경로/대상/PID_파일}}`
`dockerd {{[-p|--pidfile]}} {{경로/대상/PID_파일}}`
- 디버그 모드로 실행:
`dockerd --debug`
`dockerd {{[-D|--debug]}}`
- 특정 로그 레벨로 실행:
`dockerd --log-level {{debug|info|warn|error|fatal}}`
`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`
+4 -4
View File
@@ -9,16 +9,16 @@
- Executa o daemon do Docker e configurá-lo para escutar em sockets específicos (UNIX e TCP):
`dockerd --host unix://{{caminho/para/tmp.sock}} --host tcp://{{ip}}`
`dockerd {{[-H|--host]}} unix://{{caminho/para/tmp.sock}} {{[-H|--host]}} tcp://{{ip}}`
- Executa com um arquivo PID específico para o daemon:
`dockerd --pidfile {{caminho/para/arquivo_pid}}`
`dockerd {{[-p|--pidfile]}} {{caminho/para/arquivo_pid}}`
- Executa no modo de depuração:
`dockerd --debug`
`dockerd {{[-D|--debug]}}`
- Executa e define um nível de log específico:
`dockerd --log-level {{debug|info|warn|error|fatal}}`
`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`