這篇文章主要介紹了Docker數(shù)據(jù)存儲(chǔ)之tmpfs mounts的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)建站專注于巴里坤哈薩克企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城系統(tǒng)網(wǎng)站開發(fā)。巴里坤哈薩克網(wǎng)站建設(shè)公司,為巴里坤哈薩克等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
tmpfs mounts
Volumes和Bind mounts模式使我們能夠在宿主機(jī)和容器間共享文件從而我們能夠?qū)?shù)據(jù)持久化到宿主機(jī)上,以避免寫入容器存儲(chǔ)層帶來(lái)的容器停止后數(shù)據(jù)的丟失的問(wèn)題。
如果你使用linux運(yùn)行Docker,那么避免寫入數(shù)據(jù)到容器存儲(chǔ)層還有一個(gè)方案:tmpfs mounts。
tmpfs mounts,顧名思義,是一種非持久化的數(shù)據(jù)存儲(chǔ)。它僅僅將數(shù)據(jù)保存在宿主機(jī)的內(nèi)存中,一旦容器停止運(yùn)行,tmpfs mounts會(huì)被移除,從而造成數(shù)據(jù)丟失。
tmpfs mounts的使用
我們可以在運(yùn)行容器時(shí)通過(guò)指定--tmpfs
參數(shù)或--mount
參數(shù)來(lái)使用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ù)無(wú)法指定任何其他的可選項(xiàng),并且不能用于Swarm Service。
使用docker container inspect tmptest
命令,然后查看Mounts
部分可以看到:
"Tmpfs": { "/app": "" },
tmpfs mounts 可選選項(xiàng)
一個(gè)例子:
docker run -d \ -it \ --name tmptest \ --mount type=tmpfs,destination=/app,tmpfs-mode=1770 \ nginx:latest
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Docker數(shù)據(jù)存儲(chǔ)之tmpfs mounts的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!