1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 13:35:25 +02:00
tldr/pages/linux/dockerd.md
2025-06-24 08:44:04 +03:00

24 lines
584 B
Markdown

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