您好,登錄后才能下訂單哦!
摘要:Docker Volume,通常翻譯為數(shù)據(jù)卷,用于保存持久化數(shù)據(jù)。當(dāng)我們將數(shù)據(jù)庫(kù)例如MySQL運(yùn)行在Docker容器中時(shí),一般將數(shù)據(jù)通過Docker Volume保存在主機(jī)上,這樣即使刪除MySQL容器,數(shù)據(jù)依然保存在主機(jī)上,有效保證了數(shù)據(jù)的安全性。這篇博客將通過簡(jiǎn)單的實(shí)踐幫助大家理解什么是Docker Volume。
本文所有命令都是在play-with-docker的在線Docker實(shí)例上執(zhí)行,Docker版本為17.05.0-ce。
使用docker run命令,可以運(yùn)行一個(gè)Docker容器
docker run -itd --volume /tmp/data1:/tmp/data2 --name test ubuntu bash
使用docker inspect命令,可以查看Docker容器的詳細(xì)信息:
docker inspect --format='{{json .Mounts}}' test | python -m json.tool
[
{
"Destination": "/tmp/data2",
"Mode": "",
"Propagation": "",
"RW": true,
"Source": "/tmp/data1",
"Type": "bind"
}
]
touch /tmp/data1/hello.txt
ls /tmp/data1/
hello.txt
使用docker exec命令,可以在容器中執(zhí)行命令。
docker exec test ls /tmp/data2/
hello.txt
可知,在本機(jī)目錄/tmp/data1/的修改,可以同步到容器目錄/tmp/data2/中。
docker exec test touch /tmp/data2/world.txt
docker exec test ls /tmp/data2/
hello.txt
world.txt
ls /tmp/data1/
hello.txt world.txt
可知,在容器目錄/tmp/data2/的修改,可以同步到主機(jī)目錄/tmp/data1/中。
Docker Volume本質(zhì)上是容器與主機(jī)之間共享的目錄或者文件,這樣Docker Volume中的數(shù)據(jù)可以在主機(jī)和容器中實(shí)時(shí)同步。使用Virtualbox創(chuàng)建虛擬機(jī)時(shí),也可以配置共享目錄,這與Docker Volume非常相似。
Fundebug專注于JavaScript、微信小程序、微信小游戲、支付寶小程序、React Native、Node.js和Java實(shí)時(shí)BUG監(jiān)控。 自從2016年雙十一正式上線,F(xiàn)undebug累計(jì)處理了7億+錯(cuò)誤事件,得到了Google、360、金山軟件、百姓網(wǎng)等眾多知名用戶的認(rèn)可。歡迎免費(fèi)試用!
轉(zhuǎn)載時(shí)請(qǐng)注明作者Fundebug以及本文地址:
https://blog.fundebug.com/2017/06/07/what-is-docker-volume/
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。