typo fix
This commit is contained in:
Haoyun
2018-03-29 15:17:44 +08:00
committed by GitHub
parent 39ad6140c3
commit 7391946765
+1 -1
View File
@@ -36,7 +36,7 @@ func Client() (*docker.Client, error) {
// DOCKER_HOST, DOCKER_TLS_VERIFY, DOCKER_CERT_PATH
client, err = docker.NewClientFromEnv()
} else {
// Default unix socker end-point
// Default unix socket end-point
endpoint := "unix:///var/run/docker.sock"
client, err = docker.NewClient(endpoint)
}