Overview

Docker 提供三種掛載類型(mount types)來掛載共同資料夾:

  1. Bind mount:掛入現有的 host 檔案系統(filesystem),可以為主機路徑下任何地方,用在 container 與 host 共享資料夾。
  2. Volume:掛入 volume 物件,Container 將 Volume 存放在 Docker area,以 Linux 來說預設為var/lib/docker/volume
  3. tmpfs mount:從 memory 掛載

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/c6aadf6d-2c7d-4b57-a736-96d3fbfa4170/Untitled.png

Mode

Bind mount

Volume

tmpfs mount

Reference