You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ docker run -ti dockcross/manylinux-x64:latest ls -a
... no outputs
$ echo $?
139
I also try docker run -ti quay.io/pypa/manylinux1_x86_64:latest ls -a and docker run -ti dockcross/manylinux-x86:latest ls -a, both no problem, so I think it's a bug of dockcross/manylinux-x64.
Docker version:
$ docker version
Client:
Version: 18.05.0-ce
API version: 1.37
Go version: go1.10.2
Git commit: f150324782
Built: Wed May 16 22:27:45 2018
OS/Arch: linux/amd64
Experimental: false
Orchestrator: swarm
Server:
Engine:
Version: 18.05.0-ce
API version: 1.37 (minimum version 1.12)
Go version: go1.10.2
Git commit: f150324782
Built: Wed May 16 22:28:17 2018
OS/Arch: linux/amd64
Experimental: false
The text was updated successfully, but these errors were encountered:
$ docker run -ti dockcross/manylinux-x64:latest ls -a
. ..
$ echo $?
0
However, this is not the expected usage. Please see the README for how to invoke the image, i.e. through the generated bash script. Does a hello-world build work for you?
It was caused by a linux kernel change, only "too new" system affected.
The commands succeed after I add vsyscall=emulate kernel command line parameter and reboot system.
Reproduce:
I also try
docker run -ti quay.io/pypa/manylinux1_x86_64:latest ls -a
anddocker run -ti dockcross/manylinux-x86:latest ls -a
, both no problem, so I think it's a bug of dockcross/manylinux-x64.Docker version:
The text was updated successfully, but these errors were encountered: