Fix DNS passing. New env var is PLUGIN_CUSTOM_DNS

DNS is a reserved keywork so the dns property is no longer being
converted into the PLUGIN_DNS environment variable. Changing the
name to custom_dns so the PLUGIN_CUSTOM_DNS env var will be passed
in.
This commit is contained in:
Matt Farina 2017-05-30 17:11:55 -04:00
parent 4904d5cf56
commit 5960727df0
No known key found for this signature in database
GPG Key ID: 563463E4AF017AB2
1 changed files with 5 additions and 5 deletions

10
main.go
View File

@ -63,7 +63,7 @@ func main() {
cli.StringSliceFlag{
Name: "daemon.dns",
Usage: "docker daemon dns server",
EnvVar: "PLUGIN_DNS",
EnvVar: "PLUGIN_CUSTOM_DNS",
},
cli.BoolFlag{
Name: "daemon.insecure",
@ -103,10 +103,10 @@ func main() {
EnvVar: "PLUGIN_CONTEXT",
},
cli.StringSliceFlag{
Name: "tags",
Usage: "build tags",
Value: &cli.StringSlice{"latest"},
EnvVar: "PLUGIN_TAG,PLUGIN_TAGS",
Name: "tags",
Usage: "build tags",
Value: &cli.StringSlice{"latest"},
EnvVar: "PLUGIN_TAG,PLUGIN_TAGS",
FilePath: ".tags",
},
cli.StringSliceFlag{