implementing the support for the registry mirror

This commit is contained in:
Andrea Tosatto
2015-11-18 18:44:27 +01:00
parent 204616b78f
commit a76e08c4fd
2 changed files with 8 additions and 3 deletions

View File

@@ -20,6 +20,7 @@ type Archive struct {
type Docker struct {
Storage string `json:"storage_driver"`
Registry string `json:"registry"`
Mirror string `json:"mirror"`
Insecure bool `json:"insecure"`
Username string `json:"username"`
Password string `json:"password"`
@@ -82,6 +83,9 @@ func main() {
if vargs.Insecure && len(vargs.Registry) != 0 {
args = append(args, "--insecure-registry", vargs.Registry)
}
if len(vargs.Mirror) != 0 {
args = append(args, "--registry-mirror", vargs.Mirror)
}
for _, value := range vargs.Dns {
args = append(args, "--dns", value)