Overview
Docker 提供三種掛載類型(mount types)來掛載共同資料夾:
- Bind mount:掛入現有的 host 檔案系統(filesystem),可以為主機路徑下任何地方,用在 container 與 host 共享資料夾。
- Volume:掛入 volume 物件,Container 將 Volume 存放在 Docker area,以 Linux 來說預設為
var/lib/docker/volume
。
- tmpfs mount:從 memory 掛載
Mode
Bind mount
Volume
tmpfs mount
Reference