Docker image import and export code examples

Docker image import and export code examples

Import and export of Docker images

This 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:

  • CentOS 7.0
  • Docker 1.18

Introduction to import and export commands

The 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 difference

The tar file exported by the export command is slightly smaller than the one exported by the save command.


這里寫圖片描述

  • The export command exports a tar file from a container, while the save command exports from images.
  • Based on the second point, when the exported file is imported back, the entire history of the image (that is, the information of each layer, if you are not familiar with it, you can read Dockerfile) cannot be retained, and rollback operations cannot be performed; save is based on the image, so the information of each layer can be completely retained when importing. As shown in the following figure, nginx:latest is exported by save and imported by load, while nginx:imp is exported by export and imported by import.


這里寫圖片描述

suggestion

  1. You can choose commands based on specific usage scenarios
  2. If you only want to back up images, use save and load. If the container content changes after starting the container and needs to be backed up, use export and import.

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:
  • Docker image and container import and export operations practice
  • Implementation of importing and exporting docker images
  • Docker image import, export, backup and migration operations
  • Docker image export, import and copy example analysis
  • How to import and export Docker images
  • How to export and import images between docker
  • Introduction to Docker image import and export process

<<:  vue-cli introduction and installation

>>:  Summarize the common application problems of XHTML code

Recommend

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...

WeChat applet scroll-view realizes left-right linkage effect

WeChat applet uses scroll-view to achieve left-ri...

How to reference jQuery in a web page

It can be referenced through CDN (Content Delivery...

Implementation steps of vue-element-admin to build a backend management system

Recently, when I was working on a conference heal...

Detailed analysis of the difference between Ref and Reactive in Vue3.0

Table of contents Ref and Reactive Ref Reactive T...

Some methods to optimize query speed when MySQL processes massive data

In the actual projects I participated in, I found...

Introduction and tips for using the interactive visualization JS library gojs

Table of contents 1. Introduction to gojs 2. Gojs...

Docker executes a command in a container outside the container

Sometimes we want to execute a command in a conta...

CSS Reset style reset implementation example

Introduction: All browsers come with default styl...