您好,登錄后才能下訂單哦!
本篇內容主要講解“Docker鏡像導入導出的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Docker鏡像導入導出的方法”吧!
說明:將指定鏡像保存成 tar 歸檔文件,以tar和tar.gz結尾都行。
語法:
docker save [OPTIONS] IMAGE [IMAGE...]
OPTIONS 說明:
-o :輸出到的文件。
[root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis v1 cc6cf492f595 6 hours ago 113MB busybox latest beae173ccac6 3 months ago 1.24MB nginx latest 605c77e624dd 3 months ago 141MB redis latest 7614ae9453d1 3 months ago 113MB [root@harbor tmp]# docker save -o nginx.tar nginx:latest [root@harbor tmp]# ls nginx.tar [root@harbor tmp]# docker save -o nginx.tar.gz nginx:latest [root@harbor tmp]# ls nginx.tar nginx.tar.gz
說明:導入使用 docker save 命令導出的鏡像。
語法:
docker load [OPTIONS]
OPTIONS 說明:
--input , -i :指定導入的文件,代替 STDIN。
--quiet , -q :精簡輸出信息。
[root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 3 months ago 113MB [root@harbor tmp]# docker load < nginx.tar.gz e379e8aedd4d: Loading layer [==================================================>] 62MB/62MB b8d6e692a25e: Loading layer [==================================================>] 3.072kB/3.072kB f1db227348d0: Loading layer [==================================================>] 4.096kB/4.096kB 32ce5f6a5106: Loading layer [==================================================>] 3.584kB/3.584kB d874fd2bc83b: Loading layer [==================================================>] 7.168kB/7.168kB Loaded image: nginx:latest [root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest 605c77e624dd 3 months ago 141MB redis latest 7614ae9453d1 3 months ago 113MB
[root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 3 months ago 113MB [root@harbor tmp]# docker load < nginx.tar e379e8aedd4d: Loading layer [==================================================>] 62MB/62MB b8d6e692a25e: Loading layer [==================================================>] 3.072kB/3.072kB f1db227348d0: Loading layer [==================================================>] 4.096kB/4.096kB 32ce5f6a5106: Loading layer [==================================================>] 3.584kB/3.584kB d874fd2bc83b: Loading layer [==================================================>] 7.168kB/7.168kB Loaded image: nginx:latest [root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest 605c77e624dd 3 months ago 141MB redis latest 7614ae9453d1 3 months ago 113MB
說明:將指定運行或停止的容器導出為tar包。
語法:
docker export [OPTIONS] CONTAINER
OPTIONS說明:
-o :將輸入內容寫到文件。
使用redis:latest
鏡像運行一個docker redis容器。
[root@harbor tmp]# docker run -d --name redis redis:latest 00bd9bf582ffdf7dc89793252de9b663ce5b685061bb3652d167924270bed423 [root@harbor tmp]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 00bd9bf582ff redis:latest "docker-entrypoint.s…" 3 seconds ago Up 2 seconds 6379/tcp redis
將運行中的redis容器導出稱為redis.tar.gz包。
[root@harbor tmp]# docker export -o redis.tar.gz redis [root@harbor tmp]# ls nginx.tar nginx.tar.gz redis.tar.gz
停止redis容器
[root@harbor tmp]# docker stop redis redis
將已經停止的redis容器導出為redis1.tzr.gz包
[root@harbor tmp]# docker export -o redis1.tar.gz redis [root@harbor tmp]# ls nginx.tar nginx.tar.gz redis1.tar.gz redis.tar.gz
說明:從 tar包導入內容以docker 鏡像。
語法
docker import [OPTIONS] file|URL|- [REPOSITORY[:TAG]]
OPTIONS說明:
-c :應用docker 指令創建鏡像;
-m :提交時的說明文字
您可以指定一個URL
或-
(破折號)直接從STDIN
. URL
可以指向包含文件系統的存檔(.tar、.tar.gz、.tgz、.bzip、.tar.xz 或 .txz)或 Docker 主機上的單個文件。 如果你指定一個存檔,Docker 會在相對于/
(root) 的容器中解壓它。如果指定單個文件,則必須指定主機內的完整路徑。要從遠程位置導入,請指定以or協議URI
開頭的 a。http://
https://
[root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 3 months ago 113MB [root@harbor tmp]# docker import redis1.tar.gz redis:v1 sha256:07d6e5a00daa386ed5117d7bf7751f74b46f5831aea69036580cd509bb6781e7 [root@harbor tmp]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis v1 07d6e5a00daa 2 seconds ago 109MB redis latest 7614ae9453d1 3 months ago 113MB
docker import https://example.com/exampleimage.tgz
到此,相信大家對“Docker鏡像導入導出的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。