1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 05:35:31 +02:00

dockerd: add option placeholders (#16929)

This commit is contained in:
Managor 2025-06-24 08:44:04 +03:00 committed by GitHub
parent 123e75a1a5
commit 0b1bde44e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,16 +9,16 @@
- Run Docker daemon and configure it to listen to specific sockets (UNIX and TCP):
`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}`
`dockerd {{[-H|--host]}} unix://{{path/to/tmp.sock}} {{[-H|--host]}} tcp://{{ip}}`
- Run with specific daemon PID file:
`dockerd --pidfile {{path/to/pid_file}}`
`dockerd {{[-p|--pidfile]}} {{path/to/pid_file}}`
- Run in debug mode:
`dockerd --debug`
`dockerd {{[-D|--debug]}}`
- Run and set a specific log level:
`dockerd --log-level {{debug|info|warn|error|fatal}}`
`dockerd {{[-l|--log-level]}} {{debug|info|warn|error|fatal}}`