Cannot stop or restart a docker container

前端 未结 10 1099
别跟我提以往
别跟我提以往 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:49

    Worth knowing:

    If you are running an ENTRYPOINT script ... the script will work with the shebang

    #!/bin/bash -x
    

    But will stop the container from stopping with

    #!/bin/bash -xe
    

提交回复
热议问题