How to import and export Docker images

How to import and export 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 > characters indicate output to a file, nginx.tar is the target file, nginx:latest is the source image name (name:tag).

load

Order
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

Order
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, nginx-test is the source container name (name)

import

Order
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 is that the tar file exported by the export command is slightly smaller than that 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, nginx:imp is exported by export and imported by import.

這里寫圖片描述

suggestion

You can choose commands based on specific usage scenarios

If you just 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

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker image and container import and export operations practice
  • Docker image import and export code examples
  • 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 export and import images between docker
  • Introduction to Docker image import and export process

<<:  Vue mobile terminal realizes the whole process of left sliding editing and deletion

>>:  Ways to improve MongoDB performance

Recommend

Vue Element front-end application development to obtain back-end data

Table of contents Overview 1. Acquisition and pro...

Detailed explanation of MySQL InnoDB index extension

Index extension: InnoDB automatically extends eac...

Brief analysis of mysql scheduled backup tasks

Introduction In a production environment, in orde...

CocosCreator ScrollView optimization series: frame loading

Table of contents 1. Introduction 2. Analysis of ...

Implementation of drawing audio waveform with wavesurfer.js

1. View the renderings Select forward: Select bac...

Detailed explanation of how to use CMD command to operate MySql database

First: Start and stop the mysql service net stop ...

Specific use of Linux man command

01. Command Overview Linux provides a rich help m...

Detailed explanation of how to use Docker-Compose commands

You can manage and deploy Docker containers in a ...

Vue+Bootstrap realizes a simple student management system

I used vue and bootstrap to make a relatively sim...

Pure HTML and CSS to achieve JD carousel effect

The JD carousel was implemented using pure HTML a...

About MySQL innodb_autoinc_lock_mode

The innodb_autoinc_lock_mode parameter controls t...

Detailed explanation of several ways to export data in Mysql

There are many purposes for exporting MySQL data,...

Manually implement js SMS verification code input box

Preface This article records a common SMS verific...

Analysis of the methods of visual structure layout design for children's websites

1. Warm and gentle Related address: http://www.web...