diff --git a/docs/configuration.md b/docs/configuration.md index 1dcbf90d2..6f5fb7f2c 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -216,6 +216,10 @@ information about each option that appears later in this page. timeout: 3s interval: 10s threshold: 3 + proxy: + remoteurl: https://registry-1.docker.io + username: [username] + password: [password] In some instances a configuration option is **optional** but it contains child options marked as **required**. This indicates that you can omit the parent with @@ -1943,6 +1947,59 @@ The TCP address to connect to, including a port number. +## Proxy + + proxy: + remoteurl: https://registry-1.docker.io + username: [username] + password: [password] + +Proxy enables a registry to be configured as a pull through cache to the official Docker Hub. See [mirror.md](mirror.md) for more information + +
Parameter | +Required | +Description | +
---|---|---|
+ remoteurl
+ |
+ + yes + | ++ The URL of the official Docker Hub + | +
+ username
+ |
+ + no + | ++ The username of the Docker Hub account + | +
+ password
+ |
+ + no + | ++ The password for the official Docker Hub account + | +