mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages.{ar,fa}: remove translated placeholders Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * common-arguments: reword note * rmdir: fix Arabic translation Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
868 B
Markdown
24 lines
868 B
Markdown
# dockerd
|
|
|
|
> هي عملية مستمرة تعمل في الخلفية تبدأها لتتحكم في حاويات الدوكر.
|
|
> لمزيد من التفاصيل: <https://docs.docker.com/engine/reference/commandline/dockerd/>.
|
|
|
|
- قم بتشغيل دوكر في الخلفية:
|
|
|
|
`dockerd`
|
|
|
|
- قم بتشغيل دوكر في الخلفية واجعله يستمع علي منفذ معين (يونكس وبروتوكول ضبط الإرسال):
|
|
|
|
`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}`
|
|
|
|
- قم بتشغيل دوكر في الخلفية برقم عملية معين:
|
|
|
|
`dockerd --pidfile {{path/to/pid_file}}`
|
|
|
|
- قم بتشغيل دوكر في وضع التصحيح واكتشاف الأخطاء:
|
|
|
|
`dockerd --debug`
|
|
|
|
- قم بتشغيل دوكر وحدد له مستوي سجل معين:
|
|
|
|
`dockerd --log-level={{debug|info|warn|error|fatal}}`
|