1
0
mirror of https://github.com/containrrr/watchtower.git synced 2025-01-20 18:28:27 +02:00

Update private-registries.md

This commit is contained in:
Jan Kristof Nidzwetzki 2019-12-25 21:59:10 +01:00 committed by GitHub
parent 0c3133f2d0
commit 8f8da6a2f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,21 +3,21 @@ Watchtower supports private Docker image registries. In many cases, accessing a
The credentials can be provided to watchtower in a configuration file called `config.json`. There are two ways to generate this configuration file:
* The configuration file can be created manually.
* Call `docker login $REGISTRY_NAME` and share the resulting configuration file.
* Call `docker login <REGISTRY_NAME>` and share the resulting configuration file.
### Create the configuration file manually
Create a new configuration file with the following syntax and a base64 encoded username and password `auth` string:
```json
{
"auths": {
"$REGISTRY_NAME": {
"<REGISTRY_NAME>": {
"auth": "XXXXXXX"
}
}
}
```
`$REGISTRY_NAME` needs to be replaced by the name of your private registry (e.g., `my-private-registry.example.org`)
`<REGISTRY_NAME>` needs to be replaced by the name of your private registry (e.g., `my-private-registry.example.org`)
The required `auth` string can be generated as follows:
```bash