Browse Source

Add content type to Push

creack 12 years ago
parent
commit
3870ebee6d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      registry.go

+ 1 - 0
registry.go

@@ -203,6 +203,7 @@ func (graph *Graph) PushImage(imgOrig *Image, authConfig *auth.AuthConfig) error
 		if err != nil {
 			return err
 		}
+		req.Header.Add("Content-type", "application/json")
 		req.SetBasicAuth(authConfig.Username, authConfig.Password)
 		res, err := client.Do(req)
 		if err != nil || res.StatusCode != 200 {