Update docker.go

This commit is contained in:
Albie 2021-08-10 20:54:22 +01:00 committed by GitHub
parent 9ba08fde5b
commit 7b8a27cf98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,8 +55,10 @@ func commandInfo() *exec.Cmd {
func commandInstallBinfmt() *exec.Cmd {
return exec.Command(
dockerExe, "run",
"--privileged", "--rm",
"tonistiigi/binfmt", "--install all"
"--privileged",
"--rm",
"tonistiigi/binfmt",
"--install all",
)
}