mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	At the "Build image from Dockerfile" section in the API docs the Content-Type header is missing. In addition, some parts in the code are still setting the Content-Type header to application/tar while it was changed to application/x-tar since 16th September 2015. Signed-off-by: Boaz Shuster <ripcurld.github@gmail.com>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			607 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			607 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package client
 | 
						|
 | 
						|
import (
 | 
						|
	"io"
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
 | 
						|
	"github.com/docker/docker/api/types"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
)
 | 
						|
 | 
						|
// PluginCreate creates a plugin
 | 
						|
func (cli *Client) PluginCreate(ctx context.Context, createContext io.Reader, createOptions types.PluginCreateOptions) error {
 | 
						|
	headers := http.Header(make(map[string][]string))
 | 
						|
	headers.Set("Content-Type", "application/x-tar")
 | 
						|
 | 
						|
	query := url.Values{}
 | 
						|
	query.Set("name", createOptions.RepoName)
 | 
						|
 | 
						|
	resp, err := cli.postRaw(ctx, "/plugins/create", query, createContext, headers)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	ensureReaderClosed(resp)
 | 
						|
	return err
 | 
						|
}
 |