docs: context refers to desktop-linux

The docker context ls command shows the output as desktop-linux but the context use command doesn't match this.
This commit is contained in:
Thomas Shaw 2022-06-13 21:46:15 +01:00 committed by GitHub
parent 1181024d1f
commit bb6a200e28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -202,12 +202,12 @@ default
Current context is now "default"
```
And use the `docker-desktop` context to interact with Docker Desktop:
And use the `desktop-linux` context to interact with Docker Desktop:
```console
$ docker context use docker-desktop
docker-desktop
Current context is now "docker-desktop"
$ docker context use desktop-linux
desktop-linux
Current context is now "desktop-linux"
```
Refer to the [Docker Context documentation](../../engine/context/working-with-contexts.md) for more details.