mirror of https://github.com/docker/docs.git
Merge pull request #25532 from thaJeztah/docs-update-node-inspect-output
Update example output for node inspect (cherry picked from commit 80c49d1e5206eabf314069c262f7f643adf021e1) Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (cherry picked from commit adf552821a35361b5c975189d6fd5c26f700e86a) Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
parent
1ad0903ea3
commit
4e6e046035
|
@ -101,6 +101,7 @@ Example output:
|
||||||
$ docker node inspect --pretty self
|
$ docker node inspect --pretty self
|
||||||
ID: e216jshn25ckzbvmwlnh5jr3g
|
ID: e216jshn25ckzbvmwlnh5jr3g
|
||||||
Hostname: swarm-manager
|
Hostname: swarm-manager
|
||||||
|
Joined at: 2016-06-16 22:52:44.9910662 +0000 utc
|
||||||
Status:
|
Status:
|
||||||
State: Ready
|
State: Ready
|
||||||
Availability: Active
|
Availability: Active
|
||||||
|
|
|
@ -69,25 +69,26 @@ pass the `--pretty` flag to print the results in human-readable format. For exam
|
||||||
```bash
|
```bash
|
||||||
docker node inspect self --pretty
|
docker node inspect self --pretty
|
||||||
|
|
||||||
ID: ehkv3bcimagdese79dn78otj5
|
ID: ehkv3bcimagdese79dn78otj5
|
||||||
Hostname: node-1
|
Hostname: node-1
|
||||||
|
Joined at: 2016-06-16 22:52:44.9910662 +0000 utc
|
||||||
Status:
|
Status:
|
||||||
State: Ready
|
State: Ready
|
||||||
Availability: Active
|
Availability: Active
|
||||||
Manager Status:
|
Manager Status:
|
||||||
Address: 172.17.0.2:2377
|
Address: 172.17.0.2:2377
|
||||||
Raft Status: Reachable
|
Raft Status: Reachable
|
||||||
Leader: Yes
|
Leader: Yes
|
||||||
Platform:
|
Platform:
|
||||||
Operating System: linux
|
Operating System: linux
|
||||||
Architecture: x86_64
|
Architecture: x86_64
|
||||||
Resources:
|
Resources:
|
||||||
CPUs: 2
|
CPUs: 2
|
||||||
Memory: 1.954 GiB
|
Memory: 1.954 GiB
|
||||||
Plugins:
|
Plugins:
|
||||||
Network: overlay, host, bridge, overlay, null
|
Network: overlay, host, bridge, overlay, null
|
||||||
Volume: local
|
Volume: local
|
||||||
Engine Version: 1.12.0-dev
|
Engine Version: 1.12.0-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
## Update a node
|
## Update a node
|
||||||
|
|
Loading…
Reference in New Issue