Change default DOCKER_HOST value, fixes #4923

This commit is contained in:
Sebastiaan van Steenis 2016-02-10 20:21:17 +01:00
parent 3e69e2eca6
commit 4a10530b07
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ func Provider() terraform.ResourceProvider {
"host": &schema.Schema{
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("DOCKER_HOST", "unix:/run/docker.sock"),
DefaultFunc: schema.EnvDefaultFunc("DOCKER_HOST", "unix:///var/run/docker.sock"),
Description: "The Docker daemon address",
},