Skip to content

Commit

Permalink
Merge pull request #5088 from superseb/docker_host_default
Browse files Browse the repository at this point in the history
Change default DOCKER_HOST value, fixes #4923
  • Loading branch information
stack72 committed Feb 11, 2016
2 parents 3e69e2e + 4a10530 commit 47ee916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/docker/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},

Expand Down

0 comments on commit 47ee916

Please sign in to comment.