Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
linux/dockerd Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`