mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 00:45:48 -05:00
Merge pull request #10 from crazy-max/dockerhub-pat
Recommend DockerHub PAT
This commit is contained in:
commit
12054aedfd
1 changed files with 4 additions and 1 deletions
|
@ -34,6 +34,9 @@ ___
|
|||
|
||||
### DockerHub
|
||||
|
||||
To authenticate against [DockerHub](https://hub.docker.com) it's strongly recommended to create a
|
||||
[personal access token](https://docs.docker.com/docker-hub/access-tokens/) as an alternative to your password.
|
||||
|
||||
```yaml
|
||||
name: ci
|
||||
|
||||
|
@ -50,7 +53,7 @@ jobs:
|
|||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
```
|
||||
|
||||
### GitHub Packages Docker Registry
|
||||
|
|
Loading…
Reference in a new issue