-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from justone/direct_client
Direct client access
- Loading branch information
Showing
5 changed files
with
189 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package main | ||
|
||
import ( | ||
"errors" | ||
"os" | ||
"path" | ||
|
||
"github.com/fsouza/go-dockerclient" | ||
) | ||
|
||
func connect() (*docker.Client, error) { | ||
|
||
// grab directly from docker daemon | ||
var endpoint string | ||
if env_endpoint := os.Getenv("DOCKER_HOST"); len(env_endpoint) > 0 { | ||
endpoint = env_endpoint | ||
} else if len(globalOptions.Host) > 0 { | ||
endpoint = globalOptions.Host | ||
} else { | ||
// assume local socket | ||
endpoint = "unix:///var/run/docker.sock" | ||
} | ||
|
||
var client *docker.Client | ||
var err error | ||
dockerTlsVerifyEnv := os.Getenv("DOCKER_TLS_VERIFY") | ||
if dockerTlsVerifyEnv == "1" || globalOptions.TLSVerify { | ||
if dockerCertPath := os.Getenv("DOCKER_CERT_PATH"); len(dockerCertPath) > 0 { | ||
cert := path.Join(dockerCertPath, "cert.pem") | ||
key := path.Join(dockerCertPath, "key.pem") | ||
ca := path.Join(dockerCertPath, "ca.pem") | ||
client, err = docker.NewTLSClient(endpoint, cert, key, ca) | ||
if err != nil { | ||
return nil, err | ||
} | ||
} else if len(globalOptions.TLSCert) > 0 && len(globalOptions.TLSKey) > 0 && len(globalOptions.TLSCaCert) > 0 { | ||
client, err = docker.NewTLSClient(endpoint, globalOptions.TLSCert, globalOptions.TLSKey, globalOptions.TLSCaCert) | ||
if err != nil { | ||
return nil, err | ||
} | ||
} else { | ||
return nil, errors.New("TLS Verification requested but certs not specified") | ||
} | ||
} else { | ||
client, err = docker.NewClient(endpoint) | ||
if err != nil { | ||
return nil, err | ||
} | ||
} | ||
return client, nil | ||
} |