mirror of https://github.com/docker/docs.git
Update debian.md (#16654)
* Update debian.md Set correct filemask for `/etc/apt/keyrings` . If this is not 0755, the keys in the directory cannot be used. Co-authored-by: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
This commit is contained in:
parent
c70d8507c8
commit
6d8b08171c
|
@ -96,7 +96,7 @@ Docker from the repository.
|
|||
2. Add Docker's official GPG key:
|
||||
|
||||
```console
|
||||
$ sudo mkdir -p /etc/apt/keyrings
|
||||
$ sudo mkdir -m 0755 -p /etc/apt/keyrings
|
||||
$ curl -fsSL {{ download-url-base }}/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue