1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/linux/dockerd.md
Vitor Henrique af35564618
pages*: do not use config abbreviation (#12118)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-25 10:59:16 +05:30

554 B

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 configure it to listen to specific sockets (UNIX and 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}}