enable dns w/ docker

This commit is contained in:
Brad Rydzewski 2015-09-03 18:17:51 -07:00
parent be274cf2e9
commit 678550e68f
2 changed files with 24 additions and 17 deletions

View File

@ -22,6 +22,7 @@ type Docker struct {
Repo string `json:"repo"`
Tag string `json:"tag"`
File string `json:"file"`
Dns []string `json:"dns"`
}
func main() {
@ -55,12 +56,16 @@ func main() {
cmd.Stderr = ioutil.Discard
cmd.Run()
args := []string{"-d", "-s", vargs.Storage}
args := []string{"daemon", "-s", vargs.Storage}
if vargs.Insecure && len(vargs.Registry) != 0 {
args = append(args, "--insecure-registry", vargs.Registry)
}
for _, value := range vargs.Dns {
args = append(args, "--dns", value)
}
cmd = exec.Command("docker", args...)
cmd.Stdout = ioutil.Discard
cmd.Stderr = ioutil.Discard
@ -74,6 +79,8 @@ func main() {
// Set the Registry value
if len(vargs.Registry) == 0 {
vargs.Registry = "https://index.docker.io/v1/"
} else {
vargs.Repo = fmt.Sprintf("%s/%s", vargs.Registry, vargs.Repo)
}
// Set the Dockerfile path
if len(vargs.File) == 0 {