本文介绍了Docker:将重新启动策略添加到已创建的容器中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我看到Docker已经添加了一些名为重新启动策略来处理例如重新启动的容器重新启动。
I see that Docker has added something called restarting policies to handle restart of containers in case of, for instance, reboot.
虽然这非常有用,我看到重新启动策略命令只适用于 docker运行
而不是 docker start
。所以我的问题是:
While this is very useful, I see that the restart policy command just work with docker run
and not docker start
. So my question is:
有没有办法向过去创建的容器添加重新启动策略?
Is there any way to add restarting policies to a container that was already created in the past?
推荐答案
在最近版本的docker(1.11)中,您有一个命令:
In recent versions of docker (as of 1.11) you have an update
command:
docker update --restart=always <container>
这篇关于Docker:将重新启动策略添加到已创建的容器中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!