Docker: Container keeps on restarting again on again

后端 未结 11 1580
傲寒
傲寒 2020-12-22 18:55

I today deployed an instance of MediaWiki using the appcontainers/mediawiki docker image, and I now have a new problem for which I cannot find any clue. After trying to atta

11条回答
  •  借酒劲吻你
    2020-12-22 19:24

    This could also be the case if you have created a systemd service that has:

    [Service]
    Restart=always
    ExecStart=/usr/bin/docker container start -a my_container
    ExecStop=/usr/bin/docker container stop -t 2 my_container
    

提交回复
热议问题