mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
46578a2359
Setting dockerBinary to the full path of the Docker binary is a good idea and this is now done in the test code. Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
40 lines
945 B
Go
40 lines
945 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
// the docker binary to use
|
|
var dockerBinary = "docker"
|
|
|
|
// the private registry image to use for tests involving the registry
|
|
var registryImageName = "registry"
|
|
|
|
// the private registry to use for tests
|
|
var privateRegistryURL = "127.0.0.1:5000"
|
|
|
|
var workingDirectory string
|
|
|
|
func init() {
|
|
if dockerBin := os.Getenv("DOCKER_BINARY"); dockerBin != "" {
|
|
dockerBinary = dockerBin
|
|
} else {
|
|
whichCmd := exec.Command("which", "docker")
|
|
out, _, err := runCommandWithOutput(whichCmd)
|
|
if err == nil {
|
|
dockerBinary = stripTrailingCharacters(out)
|
|
} else {
|
|
fmt.Printf("ERROR: couldn't resolve full path to the Docker binary")
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
if registryImage := os.Getenv("REGISTRY_IMAGE"); registryImage != "" {
|
|
registryImageName = registryImage
|
|
}
|
|
if registry := os.Getenv("REGISTRY_URL"); registry != "" {
|
|
privateRegistryURL = registry
|
|
}
|
|
workingDirectory, _ = os.Getwd()
|
|
}
|