這篇文章主要介紹“Docker數(shù)據(jù)存儲tmpfs mounts實例分析”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Docker數(shù)據(jù)存儲tmpfs mounts實例分析”文章能幫助大家解決問題。
成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、成都網(wǎng)站設計與策劃設計,察哈爾右翼中旗網(wǎng)站建設哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設十多年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:察哈爾右翼中旗等地區(qū)。察哈爾右翼中旗做網(wǎng)站價格咨詢:18982081108
tmpfs mounts
volumes和bind mounts模式使我們能夠在宿主機和容器間共享文件從而我們能夠將數(shù)據(jù)持久化到宿主機上,以避免寫入容器存儲層帶來的容器停止后數(shù)據(jù)的丟失的問題。
如果你使用linux運行docker,那么避免寫入數(shù)據(jù)到容器存儲層還有一個方案:tmpfs mounts。
tmpfs mounts,顧名思義,是一種非持久化的數(shù)據(jù)存儲。它僅僅將數(shù)據(jù)保存在宿主機的內存中,一旦容器停止運行,tmpfs mounts會被移除,從而造成數(shù)據(jù)丟失。
tmpfs mounts的使用
我們可以在運行容器時通過指定--tmpfs
參數(shù)或--mount
參數(shù)來使用tmpfs mounts:
$ docker run -d \ -it \ --name tmptest \ --mount type=tmpfs,destination=/app \ nginx:latest
$ docker run -d \ -it \ --name tmptest \ --tmpfs /app \ nginx:latest
使用
--tmpfs
參數(shù)無法指定任何其他的可選項,并且不能用于swarm service。
使用docker container inspect tmptest
命令,然后查看mounts
部分可以看到:
"tmpfs": { "/app": "" },
tmpfs mounts 可選選項
一個例子:
docker run -d \ -it \ --name tmptest \ --mount type=tmpfs,destination=/app,tmpfs-mode=1770 \ nginx:latest
關于“Docker數(shù)據(jù)存儲tmpfs mounts實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。