[skip ci] Merge pull request #21 from Rujios/master

fix arm64 mongo image name in run.go -- thanks @Rujios
This commit is contained in:
Yann Stepienik 2023-06-07 11:17:52 +01:00 committed by GitHub
commit 978381c1e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,10 +29,10 @@ func NewDB(w http.ResponseWriter, req *http.Request) (string, error) {
imageName := "mongo:latest" imageName := "mongo:latest"
//if ARM use amd64/mongo //if ARM use arm64v8/mongo
if runtime.GOARCH == "arm64" { if runtime.GOARCH == "arm64" {
utils.Warn("ARM64 detected. Using ARM mongo 4.4") utils.Warn("ARM64 detected. Using ARM mongo 4.4")
imageName = "amd64/mongo:4.4" imageName = "arm64v8/mongo:4.4"
// if CPU is missing AVX, use 4.4 // if CPU is missing AVX, use 4.4
} else if runtime.GOARCH == "amd64" && !cpu.X86.HasAVX { } else if runtime.GOARCH == "amd64" && !cpu.X86.HasAVX {
@ -130,4 +130,4 @@ func RunContainer(imagename string, containername string, inputEnv []string, vol
utils.Log("Container created " + cont.ID) utils.Log("Container created " + cont.ID)
return nil return nil
} }