Can't run Docker container due device mapper error

前端 未结 5 556
囚心锁ツ
囚心锁ツ 2020-12-25 14:36

I just can\'t create and run new containers in Docker anymore. But in the same time a can run previously created containers.

When I try to do something like this:<

5条回答
  •  轮回少年
    2020-12-25 15:23

    In our case just need to start and stop the service.

    Depending on your system you can run:

    service docker stop
    service docker start
    

    or:

    sudo systemctl stop docker.service
    sudo systemctl start docker.service
    

    or:

    sudo /etc/init.d/docker restart
    

提交回复
热议问题