Merge branch '2.0.0' of https://github.com/shuffle/shuffle into 2.0.0

This commit is contained in:
Frikky
2024-11-30 16:22:18 +01:00
2 changed files with 25 additions and 0 deletions
+22
View File
@@ -1255,6 +1255,28 @@ func deployWorker(image string, identifier string, env []string, executionReques
Resources: container.Resources{},
}
certPath := "/certs"
// This is just to test the mounting locally so
// I can control from what source I'm mounting
// the certs to. Default behaviour is:
// /certs:/certs.
if os.Getenv("SHUFFLE_CERT_PATH") != "" {
certPath = os.Getenv("SHUFFLE_CERT_PATH")
}
_, err := os.ReadDir(certPath)
if certPath != "" && err == nil {
certVol := mount.Mount{
Type: mount.TypeBind,
Source: certPath,
Target: "/certs",
}
hostConfig.Mounts = append(hostConfig.Mounts, certVol)
}
if len(os.Getenv("DOCKER_HOST")) == 0 {
if runtime.GOOS == "windows" {
hostConfig.Binds = []string{`\\.\pipe\docker_engine:\\.\pipe\docker_engine`}