Docker image import, export, backup and migration operations

Docker image import, export, backup and migration operations

Export:

docker save -o centos.tar centos:latest #Export the centos:latest image as a centos.tar file

Import:

docker load -i centos.tar #Load centos.tar. The labels of the loaded image are the same as the labels of the original exported image.

Additional knowledge: Docker saves the image as a tar file

Save a single file as a tar file and load it locally

docker save ****.v1 > images.tar

docker load < images.tar

Save multiple files as a tar file and load it locally

docker save ** ** ** ** > images.tar

docker load < ksp_images_20191206.tar

The above operation of docker image import, export, backup and migration is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you 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 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

<<:  What is dns-prefetch? Front-end optimization: DNS pre-resolution improves page speed

>>:  MySQL sorting principles and case analysis

Recommend

Example of using swiper plugin to implement carousel in Vue

Table of contents vue - Use swiper plugin to impl...

Solve the problem of ugly blue border after adding hyperlink to html image img

HTML img produces an ugly blue border after addin...

How to set background blur with CSS

When making some pages, in order to make the page...

Forever+nginx deployment method example of Node site

I recently bought the cheapest Tencent cloud serv...

Causes and solutions for front-end exception 502 bad gateway

Table of contents 502 bad gateway error formation...

Implementation of MySQL Multi-version Concurrency Control MVCC

Table of contents What is MVCC MVCC Implementatio...

Detailed explanation of MySQL trigger trigger example

Table of contents What is a trigger Create a trig...

Nginx uses the Gzip algorithm to compress messages

What is HTTP Compression Sometimes, relatively la...

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

Cross-browser development experience summary (I) HTML tags

Add a DOCTYPE to the page Since different browser...

Web lesson plans, lesson plans for beginners

Teaching Topics Web page Applicable grade Second ...

Use of MySQL DDL statements

Preface The language classification of SQL mainly...