mirror of
https://github.com/docker/cli.git
synced 2025-08-31 23:02:07 +03:00
Remove "Docker" from registry, as the registry specification is no longer docker-specific, but part of the OCI distribution spec. Also removed "Register" from one of the docs pages, as the login command hasn't supported creating a new acccount on Docker Hub for a long time. I'm wondering if we should be more explicit about what log in / out does (effectively; authenticate, and on success store the credentials or token, and on log out; remove credentials/token). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
28 lines
405 B
Markdown
28 lines
405 B
Markdown
---
|
|
title: "logout"
|
|
description: "The logout command description and usage"
|
|
keywords: "logout, docker, registry"
|
|
---
|
|
|
|
# logout
|
|
|
|
```markdown
|
|
Usage: docker logout [SERVER]
|
|
|
|
Log out from a registry.
|
|
If no server is specified, the default is defined by the daemon.
|
|
|
|
Options:
|
|
--help Print usage
|
|
```
|
|
|
|
## Examples
|
|
|
|
```console
|
|
$ docker logout localhost:8080
|
|
```
|
|
|
|
## Related commands
|
|
|
|
* [login](login.md)
|