方法一. update 命令
eg:
docker container update --restart=always 容器名字
方法二. 修改container的配置文件
先停止容器
- 停止docker:
systemctl stop docker
- 修改配置文件,配置文件路径为
/var/lib/docker/containers/容器ID
,对应的配置文件为hostconfig.json
和config.v2.json
- 启动docker:
systemctl start docker
- 启动容器
注意,重启docker很重要,否则修改完的配置文件,重启容器后会被还原
网友评论