mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add content type to Push
This commit is contained in:
parent
520af226c0
commit
3870ebee6d
1 changed files with 1 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue