Easy Tutorial
❮ Docker Compose Docker Info Command ❯

Docker login/logout Commands

Complete Docker Command Reference


docker login: Log in to a Docker registry. If no registry address is specified, the default is Docker Hub.

docker logout: Log out from a Docker registry. If no registry address is specified, the default is Docker Hub.

Syntax

docker login [OPTIONS] [SERVER]
docker logout [OPTIONS] [SERVER]

OPTIONS Description:

-

-u: Username for login

-

-p: Password for login

Examples

Log in to Docker Hub

docker login -u username -p password

Log out from Docker Hub

docker logout

Complete Docker Command Reference

❮ Docker Compose Docker Info Command ❯