Merge pull request #33467 from bschwind/copy-documentation

Add note to CopyToContainer documentation
This commit is contained in:
Sebastiaan van Stijn 2017-06-24 00:19:51 -07:00 коммит произвёл GitHub
Родитель 94e9cb13f4 1c3071e487
Коммит 5564fad406
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -30,6 +30,7 @@ func (cli *Client) ContainerStatPath(ctx context.Context, containerID, path stri
}
// CopyToContainer copies content into the container filesystem.
// Note that `content` must be a Reader for a TAR
func (cli *Client) CopyToContainer(ctx context.Context, container, path string, content io.Reader, options types.CopyToContainerOptions) error {
query := url.Values{}
query.Set("path", filepath.ToSlash(path)) // Normalize the paths used in the API.