Skip to content

Commit

Permalink
Add missing '/' in default registryCredentials (#348)
Browse files Browse the repository at this point in the history
Default links in documentation were missing the closing slash. It should be: 'https://index.docker.io/v1/' as in gradle-docker-plugin/src/main/groovy/com/bmuschko/gradle/docker/DockerRegistryCredentials.groovy
  • Loading branch information
aleskiewicz authored and cdancy committed Feb 21, 2017
1 parent 36edac8 commit 03c7ec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.asciidoc
Expand Up @@ -146,7 +146,7 @@ You can provide those credentials in the `registryCredentials` closure:
[options="header"]
|=======
|Property name |Type |Default value |Description
|`url` |String |https://index.docker.io/v1 |The registry URL.
|`url` |String |https://index.docker.io/v1/ |The registry URL.
|`username` |String |null |The registry username.
|`password` |String |null |The registry password.
|`email` |String |null |The registry email address.
Expand All @@ -168,7 +168,7 @@ docker {
certPath = new File(System.properties['user.home'], '.boot2docker/certs/boot2docker-vm')
registryCredentials {
url = 'https://index.docker.io/v1'
url = 'https://index.docker.io/v1/'
username = 'bmuschko'
password = 'pwd'
email = 'benjamin.muschko@gmail.com'
Expand Down

0 comments on commit 03c7ec2

Please sign in to comment.