Docker on CentOS report "unable to mount sys as readonly" when run -
Docker on CentOS report "unable to mount sys as readonly" when run -
i'm starting utilize docker, , trying install docker on centos 6.5 (in vmware player 6) according this official document. things went until seek start container.
$ sudo docker run -i -t centos /bin/bash 2014/06/19 10:16:36 unable remount sys readonly: unable mount sys readonly max retries reached
additional info listed below.
$ uname -r 2.6.32-431.el6.x86_64 $ cat /etc/redhat-release centos release 6.5 (final) $ sudo docker version client version: 1.0.0 client api version: 1.12 go version (client): go1.2.2 git commit (client): 63fe64c/1.0.0 server version: 1.0.0 server api version: 1.12 go version (server): go1.2.2 git commit (server): 63fe64c/1.0.0 $ sudo docker images repository tag image id created virtual size centos latest 0c752394b855 9 days ago 124.1 mb
could please help figure out problem is? give thanks you.
most issue native execution driver. seek switch lxc
edit /etc/sysconfig/docker
file , create sure other_args
contains --exec-driver=lxc
example:
other_args="--exec-driver=lxc"
and don't forget restart docker service...
centos docker
Comments
Post a Comment