Signed-off-by: Antonio Murdaca <runcom@redhat.com>
(cherry picked from commit 585332dfe0b4b38f428deb680086b6d69275100d)
Signed-off-by: Tibor Vass <tibor@docker.com>
| ... | ... |
@@ -17,6 +17,7 @@ weight = -1 |
| 17 | 17 |
A self-sufficient runtime for linux containers. |
| 18 | 18 |
|
| 19 | 19 |
Options: |
| 20 |
+ --add-runtime=[] Register an additional OCI compatible runtime |
|
| 20 | 21 |
--api-cors-header="" Set CORS headers in the remote API |
| 21 | 22 |
--authorization-plugin=[] Set authorization plugins to load |
| 22 | 23 |
-b, --bridge="" Attach containers to a network bridge |
| ... | ... |
@@ -60,7 +61,6 @@ weight = -1 |
| 60 | 60 |
-p, --pidfile="/var/run/docker.pid" Path to use for daemon PID file |
| 61 | 61 |
--raw-logs Full timestamps without ANSI coloring |
| 62 | 62 |
--registry-mirror=[] Preferred Docker registry mirror |
| 63 |
- --add-runtime=[] Register an additional OCI compatible runtime |
|
| 64 | 63 |
-s, --storage-driver="" Storage driver to use |
| 65 | 64 |
--selinux-enabled Enable selinux support |
| 66 | 65 |
--storage-opt=[] Set storage driver options |
| ... | ... |
@@ -6,6 +6,7 @@ dockerd - Enable daemon mode |
| 6 | 6 |
|
| 7 | 7 |
# SYNOPSIS |
| 8 | 8 |
**dockerd** |
| 9 |
+[**--add-runtime**[=*[]*]] |
|
| 9 | 10 |
[**--api-cors-header**=[=*API-CORS-HEADER*]] |
| 10 | 11 |
[**--authorization-plugin**[=*[]*]] |
| 11 | 12 |
[**-b**|**--bridge**[=*BRIDGE*]] |
| ... | ... |
@@ -75,6 +76,9 @@ format. |
| 75 | 75 |
|
| 76 | 76 |
# OPTIONS |
| 77 | 77 |
|
| 78 |
+**--add-runtime**=[] |
|
| 79 |
+ Set additional OCI compatible runtime. |
|
| 80 |
+ |
|
| 78 | 81 |
**--api-cors-header**="" |
| 79 | 82 |
Set CORS headers in the remote API. Default is cors disabled. Give urls like "http://foo, http://bar, ...". Give "*" to allow all. |
| 80 | 83 |
|