mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-29 19:57:51 +00:00
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com> Vendors in fsouza/docker-client, docker/docker and a few more related. Of particular note, changes to the TweakCapabilities() function from docker/docker along with the parse.IDMappingOptions() function from Buildah. Please pay particular attention to the related changes in the call from libpod to those functions during the review. Passes baseline tests.
7 lines
267 B
Go
7 lines
267 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
// DefaultDockerHost defines os specific default if DOCKER_HOST is unset
|
|
const DefaultDockerHost = "npipe:////./pipe/docker_engine"
|
|
|
|
const defaultProto = "npipe"
|
|
const defaultAddr = "//./pipe/docker_engine"
|