@@ -1203,8 +1203,8 @@ command line or Docker's Engine API are allowed or denied by the plugin.
12031203If you have multiple plugins installed, each plugin, in order, must
12041204allow the request for it to complete.
12051205
1206- For information about how to create an authorization plugin, see [ authorization
1207- plugin] ( ../../extend/plugins_authorization.md ) section in the Docker extend section of this documentation .
1206+ For information about how to create an authorization plugin, refer to the
1207+ [ authorization plugin] ( ../../extend/plugins_authorization.md ) section.
12081208
12091209
12101210### Daemon user namespace options
@@ -1232,10 +1232,16 @@ Docker supports softlinks for the Docker data directory (`/var/lib/docker`) and
12321232for ` /var/lib/docker/tmp ` . The ` DOCKER_TMPDIR ` and the data directory can be
12331233set like this:
12341234
1235- DOCKER_TMPDIR=/mnt/disk2/tmp /usr/local/bin/dockerd -D -g /var/lib/docker -H unix:// > /var/lib/docker-machine/docker.log 2>&1
1236- # or
1237- export DOCKER_TMPDIR=/mnt/disk2/tmp
1238- /usr/local/bin/dockerd -D -g /var/lib/docker -H unix:// > /var/lib/docker-machine/docker.log 2>&1
1235+ ``` console
1236+ $ DOCKER_TMPDIR=/mnt/disk2/tmp /usr/local/bin/dockerd -D -g /var/lib/docker -H unix:// > /var/lib/docker-machine/docker.log 2>&1
1237+ ```
1238+
1239+ or
1240+
1241+ ``` console
1242+ $ export DOCKER_TMPDIR=/mnt/disk2/tmp
1243+ $ /usr/local/bin/dockerd -D -g /var/lib/docker -H unix:// > /var/lib/docker-machine/docker.log 2>&1
1244+ ````
12391245
12401246#### Default cgroup parent
12411247
@@ -1564,7 +1570,9 @@ previously configured cluster configurations.
15641570
15651571### Run multiple daemons
15661572
1567- > **Note:** Running multiple daemons on a single host is considered as "experimental". The user should be aware of
1573+ > ** Note:**
1574+ >
1575+ > Running multiple daemons on a single host is considered as "experimental". The user should be aware of
15681576> unsolved problems. This solution may not work properly in some cases. Solutions are currently under development
15691577> and will be delivered in the near future.
15701578
@@ -1616,7 +1624,7 @@ The `--tls*` options enable use of specific certificates for individual daemons.
16161624
16171625Example script for a separate “bootstrap” instance of the Docker daemon without network:
16181626
1619- ` ` ` bash
1627+ ``` console
16201628$ sudo dockerd \
16211629 -H unix:///var/run/docker-bootstrap.sock \
16221630 -p /var/run/docker-bootstrap.pid \
0 commit comments