From 448cb24fe0585ec438a890b97219558d946b1231 Mon Sep 17 00:00:00 2001 From: Natechawin Suthison Date: Tue, 15 Oct 2019 11:34:31 +0700 Subject: [PATCH] dockerd: add page (#3349) --- pages/linux/dockerd.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/dockerd.md diff --git a/pages/linux/dockerd.md b/pages/linux/dockerd.md new file mode 100644 index 000000000..6af6294ff --- /dev/null +++ b/pages/linux/dockerd.md @@ -0,0 +1,24 @@ +# dockerd + +> A persistent process to start and manage docker containers. +> More information: . + +- Run docker daemon: + +`dockerd` + +- Run docker daemon and config it to listen to specific sockets(unix,tcp): + +`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}` + +- Run with specific daemon PID file: + +`dockerd --pidfile {{path/to/pid_file}}` + +- Run in debug mode: + +`dockerd --debug` + +- Run and set a specific log level: + +`dockerd --log-level={{debug|info|warn|error|fatal}}`