You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/docker/docker.go

19 lines
416 B

package docker
import (
"errors"
"sync"
)
var (
StartDbInDocker func(string) (func() error, string, string, error) = startDbInDockerUnsupported
ErrDockerUnsupported = errors.New("docker is not currently supported on this platform")
mx = sync.Mutex{}
)
func startDbInDockerUnsupported(dialect string) (cleanup func() error, retURL, container string, err error) {
return nil, "", "", ErrDockerUnsupported
}