reg/vendor/github.com/docker/docker-ce/components/engine/integration-cli/registry/requirement.go

13 lines
406 B
Go
Raw Normal View History

package registry // import "github.com/docker/docker/integration-cli/registry"
import "os/exec"
// Hosting returns wether the host can host a registry (v2) or not
func Hosting() bool {
// for now registry binary is built only if we're running inside
// container through `make test`. Figure that out by testing if
// registry binary is in PATH.
_, err := exec.LookPath(v2binary)
return err == nil
}