Docker packages the local image and restores it to other machines

Docker packages the local image and restores it to other machines

1. Use docker images to view all the image files on this machine

2. docker save eb40dcf64078> /root/mydjango-save-1016.tar Save the image as a local file, where eb40dcf64078 is the image id

3. Upload the files saved locally to the server that cannot be pulled. The network is connected. I use the scp command directly here.

4. Use the load method to load the tar file just uploaded

docker load < /root/mydjango-save-1016.tar

5. Use the docker images command on the new machine to view the local image and check whether the image just loaded is loaded. It is found that the image name and tag loaded are both none. Use docker tag eb40dcf64078 django:latest to modify them to the original image name and tag name, where eb40dcf64078 is the images id.

6. Use docker run -itd django:latest to load and verify whether the image can be successfully "run"

Additional knowledge: Docker image import and export, image renaming. Can be used to deploy Docker applications offline

Exporting an Image

Docker images view image id and name

Export using imageId (not recommended)

docker save -o fileName.tar imageId

However, I found a problem that the image exported using imageId has both the repository and name as none when imported. However, when the image is exported using the image name and then imported again, none appears.

The reason for this error is that when docker loads, the image with the same name will be overwritten and the original image will be renamed, resulting in the problem shown in the figure above.

To rename an image:

docker tag [image id] [new image name]:[new image tag]

demo

docker tag 6982b35ff928 zookeeper

Export using imageName (recommended)

docker save -o ./fileName.tar imageName

demo

docker save -o ./portainer.tar portainer/portainer

Importing an Image

docker load -i < ./fileName.tar

demo

The above article about docker packaging local images and restoring them to other machines is all I have to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementation of Docker packaging image and configuration modification
  • How to use Docker to package and deploy images locally
  • Detailed explanation of how to use Docker to deploy a web project and package it into an image file
  • Using jib to package docker images
  • Detailed explanation of Docker container basic system image packaging
  • Use scripts to package and upload Docker images with one click

<<:  How to call a piece of HTML code together on multiple HTML pages

>>:  js to realize simple shopping cart function

Recommend

Detailed explanation of docker-machine usage

Docker-machine is a Docker management tool offici...

Detailed steps for installing and configuring MySQL 8.0 on CentOS 7.4 64-bit

Step 1: Get the MySQL YUM source Go to the MySQL ...

HTML+CSS implementation code for rounded rectangle

I was bored and suddenly thought of the implementa...

How to make form input and other text boxes read-only and non-editable in HTML

Sometimes, we want the text boxes in the form to b...

Solution to Vue data assignment problem

Let me summarize a problem that I have encountere...

The process of quickly converting mysql left join to inner join

During the daily optimization process, I found a ...

A brief discussion on how to use slots in Vue

How to define and use: Use the slot tag definitio...

Use CSS to easily implement some frequently appearing weird buttons

background In the group, some students will ask r...

Detailed process of installing Jenkins-2.249.3-1.1 with Docker

Table of contents 1. Install Docker 2. Pull the J...

UTF-8 and GB2312 web encoding

Recently, many students have asked me about web p...

Beginner's guide to building a website ⑥: Detailed usage of FlashFXP

Today I will introduce the most basic functions of...

Implementation of positioning CSS child elements relative to parent elements

Solution Add position:relative to the parent elem...

A detailed introduction to Linux system operation levels

Table of contents 1. Introduction to Linux system...