summaryrefslogtreecommitdiff
path: root/vendor/github.com/fsouza/go-dockerclient/client_unix.go
blob: e9f13f3948d27929ba85b0a808b003ae34074602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2016 go-dockerclient authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !windows
// +build !windows

package docker

import (
	"context"
	"net"
	"net/http"
)

const defaultHost = "unix:///var/run/docker.sock"

// initializeNativeClient initializes the native Unix domain socket client on
// Unix-style operating systems
func (c *Client) initializeNativeClient(trFunc func() *http.Transport) {
	if c.endpointURL.Scheme != unixProtocol {
		return
	}
	sockPath := c.endpointURL.Path

	tr := trFunc()
	tr.Proxy = nil
	tr.DialContext = func(_ context.Context, network, addr string) (net.Conn, error) {
		return c.Dialer.Dial(unixProtocol, sockPath)
	}
	c.HTTPClient.Transport = tr
}