可以在Container可写层存储数据,但是有三个缺点: 当Container销毁时,数据不能持久保存. Container的可写层和Container所在的主机紧耦合,不容易将数据移动到其他地方. 因为Container可写层需要Storage driver来管理filesystem,性能会有降低. Docker提供了三种数据Mount方式: Volumes are stored in a part of the host filesystem which is managed by Dock…