I created a container using
docker run -dit --name ub1604_test s390x/ubuntu:16.04 /bin/bash
I then tried to run another bash session by doing
docker exec -it <container_id> /bin/bash
but got this error:
OCI runtime exec failed: exec failed: container_linux.go:348: starting container process caused "open /dev/pts/4294967296: no such file or directory": unknown
I’m using Docker CE 17.12.1 on Ubuntu 16.04.1.
Also tried Docker CE 17.09 and saw the same error. However docker exec
works for me on Docker CE 17.06.2.
Could it be a setup issue? I installed docker using instructions from this page Ubuntu | Docker Docs
Thanks
Vivian