Chore(guide): added information about Docker login command (#26851)

* chore: information about Docker login command

Added information on how to use docker login command for logging into private Docker registry.

* chore: fixed the typo

fixed the typo in the docker login command

* Fix wording
This commit is contained in:
Satish Jhanwer
2019-03-29 14:57:18 +05:30
committed by Manish Giri
parent 78949d9f61
commit a03fbe1dc2

View File

@ -0,0 +1,18 @@
---
title: Docker Login
---
## Docker Login
`docker Login` allow us to login into private Docker registry.
The command can be used like this:
```shell
docker login -u <username> <private registry url>
```
After this it will ask for the password for the `<username>` user.
#### More Information:
- [Docker CLI docs: login](https://docs.docker.com/engine/reference/commandline/login/)