Files
tldr/pages.ar/linux/dockerd.md
2021-10-06 11:24:16 -03:00

25 lines
918 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# dockerd
> هي عملية مستمرة تعمل في الخلفية تبدأها لتتحكم في حاويات الدوكر.
> لمزيد من التفاصيل: <https://docs.docker.com/engine/reference/commandline/dockerd/>.
- قم بتشغيل دوكر في الخلفية:
`dockerd`
- قم بتشغيل دوكر في الخلفية واجعله يستمع علي منفذ معين (يونكس وبروتوكول ضبط الإرسال):
`dockerd --host unix://{{السوكيت/إلي/المسار}} --host tcp://{{ip}}`
- قم بتشغيل دوكر في الخلفية برقم عملية معين:
`dockerd --pidfile {{ملف_رقم_العملية/إلي/المسار}}`
- قم بتشغيل دوكر في وضع التصحيح واكتشاف الأخطاء:
`dockerd --debug`
- قم بتشغيل دوكر وحدد له مستوي سجل معين:
`dockerd --log-level={{debug|info|warn|error|fatal}}`