Docker的容器参数更新

新建一个容器的时候,可以配置参数,比如-v,-p等

如果创建之后,start/stop很多次,发现想改参数,怎么办,只能rm这个容器重新建立(run)吗

也有很多人遇到这个问题,比如

https://www.digitalocean.com/community/questions/how-to-adjust-docker-container-run-options

https://github.com/moby/moby/issues/3285

然后在上述的github issue中,开发者解决了此问题:

使用docker update命令即可!

你可能感兴趣的:(Docker的容器参数更新)