mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
dockerd: add page (#3349)
This commit is contained in:
parent
171bdd5a51
commit
448cb24fe0
24
pages/linux/dockerd.md
Normal file
24
pages/linux/dockerd.md
Normal file
@ -0,0 +1,24 @@
|
||||
# dockerd
|
||||
|
||||
> A persistent process to start and manage docker containers.
|
||||
> More information: <https://docs.docker.com/engine/reference/commandline/dockerd/>.
|
||||
|
||||
- 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}}`
|
Loading…
Reference in New Issue
Block a user