Import and export of Docker imagesThis article introduces the import and export of Docker images, which are used in scenarios such as migration, backup, and upgrade. The environment is prepared as follows:
Introduction to import and export commandsThe commands involved are export, import, save, load save Order docker save [options] images [images...] Example docker save -o nginx.tar nginx:latest Or docker save > nginx.tar nginx:latest The -o and > indicate output to a file, nginx.tar is the target file, and nginx:latest is the source image name (name:tag) load command docker load [options] Example docker load -i nginx.tar Or docker load < nginx.tar -i and < indicate input from a file. The image and related metadata, including tag information, will be successfully imported export command docker export [options] container Example docker export -o nginx-test.tar nginx-test Where -o means output to a file, nginx-test.tar is the target file, and nginx-test is the source container name (name) import command docker import [options] file|URL|- [REPOSITORY[:TAG]] Example docker import nginx-test.tar nginx:imp or cat nginx-test.tar | docker import - nginx:imp the differenceThe tar file exported by the export command is slightly smaller than the one exported by the save command.
suggestion
This is the end of this article about the import and export code examples of Docker images. For more information about importing and exporting Docker images, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: vue-cli introduction and installation
>>: Summarize the common application problems of XHTML code
What is an inode? To understand inode, we must st...
WeChat applet uses scroll-view to achieve left-ri...
Introduction to vi/vim They are both multi-mode e...
It can be referenced through CDN (Content Delivery...
Recently, when I was working on a conference heal...
Table of contents Ref and Reactive Ref Reactive T...
In the actual projects I participated in, I found...
<body> <div id="root"> <...
Table of contents 1. Introduction to gojs 2. Gojs...
Table of contents Manual deployment 1. Create a s...
Everyone is familiar with the meta tag in desktop...
Table of contents 1. Preparation Pull the redis i...
Sometimes we want to execute a command in a conta...
Table of contents Preface 1. Reasons: 2. Solution...
Introduction: All browsers come with default styl...