1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/linux/dockerd.md
rilysh 502b537ea5
pages.{en, pt_BR}: replace the previous dockerd URL with the new one (#12704)
* pages.en: add new shorter dockerd URL

* pages.pt_BR: add new shorter dockerd URL

* pages.ar: add new shorter dockerd URL

* pages.pt_BR: start with double curly brackets
2024-05-06 00:02:40 -03:00

539 B

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 --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}}