From 0b1bde44e05da38bf0317d12137afc8352b88067 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 24 Jun 2025 08:44:04 +0300 Subject: [PATCH] dockerd: add option placeholders (#16929) --- pages/linux/dockerd.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/dockerd.md b/pages/linux/dockerd.md index 8d92e83344..2837355b0f 100644 --- a/pages/linux/dockerd.md +++ b/pages/linux/dockerd.md @@ -9,16 +9,16 @@ - Run Docker daemon and configure it to listen to specific sockets (UNIX and TCP): -`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}` +`dockerd {{[-H|--host]}} unix://{{path/to/tmp.sock}} {{[-H|--host]}} tcp://{{ip}}` - Run with specific daemon PID file: -`dockerd --pidfile {{path/to/pid_file}}` +`dockerd {{[-p|--pidfile]}} {{path/to/pid_file}}` - Run in debug mode: -`dockerd --debug` +`dockerd {{[-D|--debug]}}` - Run and set a specific log level: -`dockerd --log-level {{debug|info|warn|error|fatal}}` +`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`