Use single call to create/return the docker client

This commit is contained in:
Dane Everitt
2020-10-17 14:04:56 -07:00
parent 19051c99ef
commit c031d37b91
4 changed files with 24 additions and 5 deletions

View File

@@ -55,7 +55,7 @@ type Environment struct {
// reference the container from here on out. This should be unique per-server (we use the UUID
// by default). The container does not need to exist at this point.
func New(id string, m *Metadata, c *environment.Configuration) (*Environment, error) {
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
cli, err := environment.DockerClient()
if err != nil {
return nil, err
}