Update run.go

change amd64 to arm64v8 on arm detect
This commit is contained in:
Rujios 2023-06-07 02:54:31 -05:00 committed by GitHub
parent 55dcdfd7f5
commit 2172aa0a7d
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
} }