【Docker】Docker 資料管理
阿新 • • 發佈:2020-11-23
參考教程:https://yeasy.gitbook.io/docker_practice/introduction
書籍:《Docker技術入門與實踐》
在容器中管理資料主要有兩種方式:
- 資料卷(Volumes)
- 掛載主機目錄 (Bind mounts)
環境
- virtual box 6.1
- centos 7.8
- docker 19.03
資料卷
資料卷
是一個可供一個或多個容器使用的特殊目錄,它繞過 UFS,可以提供很多有用的特性:
資料卷
可以在容器之間共享和重用- 對
資料卷
的修改會立馬生效 - 對
資料卷
的更新,不會影響映象 資料卷
預設會一直存在,即使容器被刪除
注意:
資料卷
的使用,類似於 Linux 下對目錄或檔案進行 mount,映象中的被指定為掛載點的目錄中的檔案會複製到資料卷中(僅資料卷為空時會複製)。
建立資料卷
$ docker volume create my_volume
my_volume
檢視資料卷
[node1] (local) [email protected] ~
$ docker volume ls
DRIVER VOLUME NAME
local my_volume
檢視資料卷詳情
[node1] (local) [email protected] ~ $ docker volume inspect my_volume [ { "CreatedAt": "2020-09-22T11:20:15Z", "Driver": "local", "Labels": {}, "Mountpoint": "/var/lib/docker/volumes/my_volume/_data", "Name": "my_volume", "Options": {}, "Scope": "local" } ]
啟動一個掛載資料卷的容器
[root@master ~]# docker run -d -P --name web --mount type=volume,source=my-volume,target=/usr/share/nginx/html nginx:alpine 5fa669ef06ecf858a760ab053bcb2fe804e98df8bd66b7e9dc556d24cc73caf4 [root@master ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 5fa669ef06ec docker.io/library/nginx:alpine nginx -g daemon o... 17 seconds ago Up 5 seconds ago 0.0.0.0:35727->80/tcp web [root@master ~]# curl localhost:35727 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } <!DOCTYPE html> </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html>
修改資料卷的內容
[root@master ~]# docker volume inspect my-volume
[
{
"Name": "my-volume",
"Driver": "local",
"Mountpoint": "/var/lib/containers/storage/volumes/my-volume/_data",
"CreatedAt": "2020-10-23T16:56:50.967850159+08:00",
"Labels": {
},
"Scope": "local",
"Options": {
}
}
]
[root@master ~]# cd /var/lib/containers/storage/volumes/my-volume/_data
[root@master _data]# ls
50x.html index.html
[root@master _data]# vi index.html
[root@master _data]# vim index.html
[root@master _data]# curl localhost:35727
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!Hello world!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
[root@master _data]#
刪除資料卷
[root@master _data]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
5fa669ef06ec docker.io/library/nginx:alpine nginx -g daemon o... 7 minutes ago Up 6 minutes ago 0.0.0.0:35727->80/tcp web
[root@master _data]# docker stop 5f
5fa669ef06ecf858a760ab053bcb2fe804e98df8bd66b7e9dc556d24cc73caf4
[root@master ~]# docker rm 5f
5fa669ef06ecf858a760ab053bcb2fe804e98df8bd66b7e9dc556d24cc73caf4
[root@master ~]# docker volume rm my-volume
my-volume
[root@master ~]#
刪除所有未使用的資料卷
[root@master ~]# docker volume create vol1
^[[Avol1
[root@master ~]# docker volume create vol2
vol2
[root@master ~]# docker volume create vol3
vol3
[root@master ~]# docker volume prune
WARNING! This will remove all volumes not used by at least one container.
Are you sure you want to continue? [y/N] y
ed5e6609ebfce46c374a25067a2b25a1d16a57f833c68126fd5bde5aab9c50f4
vol1
vol2
vol3
[root@master ~]#
掛載主機目錄
掛載一個主機目錄作為資料卷
使用 --mount 標記可以指定掛載一個本地主機的目錄到容器中去。
$ docker run -d -P \
--name web \
# -v /src/webapp:/usr/share/nginx/html \
--mount type=bind,source=/src/webapp,target=/usr/share/nginx/html \
nginx:alpine
上面的命令載入主機的 /src/webapp 目錄到容器的 /usr/share/nginx/html目錄。這個功能在進行測試的時候十分方便,比如使用者可以放置一些程式到本地目錄中,來檢視容器是否正常工作。本地目錄的路徑必須是絕對路徑,以前使用 -v 引數時如果本地目錄不存在 Docker 會自動為你建立一個資料夾,現在使用 --mount 引數時如果本地目錄不存在,Docker 會報錯。
Docker 掛載主機目錄的預設許可權是 讀寫,使用者也可以通過增加 readonly 指定為只讀。
$ docker run -d -P \
--name web \
# -v /src/webapp:/usr/share/nginx/html:ro \
--mount type=bind,source=/src/webapp,target=/usr/share/nginx/html,readonly \
nginx:alpine
加了 readonly 之後,就掛載為 只讀 了。如果你在容器內 /usr/share/nginx/html 目錄新建檔案,會顯示如下錯誤
/usr/share/nginx/html # touch new.txt
touch: new.txt: Read-only file system
檢視資料卷的具體資訊
"Mounts": [
{
"Type": "bind",
"Source": "/src/webapp",
"Destination": "/usr/share/nginx/html",
"Mode": "",
"RW": true,
"Propagation": "rprivate"
}
]
掛載一個本地主機檔案作為資料卷
--mount 標記也可以從主機掛載單個檔案到容器中
$ docker run --rm -it \
# -v $HOME/.bash_history:/root/.bash_history \
--mount type=bind,source=$HOME/.bash_history,target=/root/.bash_history \
ubuntu:18.04 \
bash
root@2affd44b4667:/# history
1 ls
2 diskutil list
這樣就可以記錄在容器輸入過的命令了。
總結
介紹了資料管理的兩種型別,一種是通過資料卷的方式,另外一種是通過掛載主機目錄或者檔案的方式。