Mount docker host volume but overwrite with container's contents

纵然是瞬间 提交于 2019-11-30 17:26:01

The docker 1.10+ way of sharing files would be through a volume, as in docker volume create.
That means, you don't need a container dedicated to a data volume, you can use a data volume directly.

That way, you can share and mount that volume in a container which will then keep its content in said volume.
That is more in line with how a container is working: isolating memory, cpu and filesystem from the host: that is why you cannot "mount a volume and have the container's files take precedence over the host file": that would break that container isolation and expose to the host its content.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!