1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 19:15:23 +02:00
tldr/pages/linux/dockerd.md

25 lines
584 B
Markdown
Raw Normal View History

2019-10-15 11:34:31 +07:00
# dockerd
> A persistent process to start and manage Docker containers.
> More information: <https://docs.docker.com/reference/cli/dockerd/>.
2019-10-15 11:34:31 +07:00
- Run Docker daemon:
2019-10-15 11:34:31 +07:00
`dockerd`
- Run Docker daemon and configure it to listen to specific sockets (UNIX and TCP):
2019-10-15 11:34:31 +07:00
`dockerd {{[-H|--host]}} unix://{{path/to/tmp.sock}} {{[-H|--host]}} tcp://{{ip}}`
2019-10-15 11:34:31 +07:00
- Run with specific daemon PID file:
`dockerd {{[-p|--pidfile]}} {{path/to/pid_file}}`
2019-10-15 11:34:31 +07:00
- Run in debug mode:
`dockerd {{[-D|--debug]}}`
2019-10-15 11:34:31 +07:00
- Run and set a specific log level:
`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`