mirror of https://github.com/docker/docs.git
Updated CLI command for telemetry.mb (#5443)
This commit is contained in:
parent
9f9726dfe1
commit
a96488b84d
|
@ -22,18 +22,26 @@ either using the Docker CLI or using Universal Control Plane.
|
||||||
|
|
||||||
### Use the Docker CLI
|
### Use the Docker CLI
|
||||||
|
|
||||||
To disable the telemetry plugin, use the `docker plugin disable` command:
|
To disable the telemetry plugin, use the `docker plugin disable` with either the plugin NAME or ID:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker plugin disable telemetry
|
$ docker plugin ls
|
||||||
|
ID NAME [..]
|
||||||
|
114dbeaa400c docker/telemetry:1.0.0.linux-x86_64-stable [..]
|
||||||
|
|
||||||
|
$ docker plugin disable docker/telemetry:1.0.0.linux-x86_64-stable
|
||||||
```
|
```
|
||||||
|
|
||||||
This command must be run on each Docker host.
|
This command must be run on each Docker host.
|
||||||
|
|
||||||
To re-enable the telemetry plugin, you can use `docker plugin enable`.
|
To re-enable the telemetry plugin, you can use `docker plugin enable` with either the plugin NAME or ID:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker plugin enable telemetry
|
$ docker plugin ls
|
||||||
|
ID NAME [..]
|
||||||
|
114dbeaa400c docker/telemetry:1.0.0.linux-x86_64-stable [..]
|
||||||
|
|
||||||
|
$ docker plugin enable docker/telemetry:1.0.0.linux-x86_64-stable
|
||||||
```
|
```
|
||||||
|
|
||||||
### Use Universal Control Plane
|
### Use Universal Control Plane
|
||||||
|
|
Loading…
Reference in New Issue