Cannot stop or restart a docker container

前端 未结 10 1101
别跟我提以往
别跟我提以往 2021-01-30 01:54

When trying to stop or restart a docker container I\'m getting the following error message:

$ docker restart 5ba0a86f36ea
Error response from daemon: Cannot rest         


        
10条回答
  •  礼貌的吻别
    2021-01-30 02:40

    If you're on Ubuntu, make sure docker-compose isn't installed as snap. This will cause all kinds of random issues, including the above.

    Remove the snap:

    sudo snap remove docker-compose
    

    And install manually from compose repository:

    Docker compose installation instruction

提交回复
热议问题