Analysis of Docker's method for creating local images

Analysis of Docker's method for creating local images

The so-called container actually creates a readable and writable file hierarchy based on the parent image. All modification operations are performed on this file hierarchy, and the parent image is not affected. If the reader needs to create a new local image based on this modification, there are two different ways. This article first looks at the first way: commit.

Create a container

First, run a container based on the local image as follows:


Command Explanation:

  • First, execute the docker images command to view the local image.
  • Create a container named nginx based on the nginx image in the local image and start it.
  • Copy a file named index.html from the host to the container.
  • Access the container and find that the changes have taken effect.
  • Next, create a new container named nginx2.
  • When accessing nginx2, I found that the default page in nginx2 was still the default page of nginx and had not changed.

Create a local image

Next, create a local image based on the first container just created, as follows:


Command Explanation:

  • The parameter -m is a brief description of the created image.
  • --author indicates the author of the image.
  • ce1fe32739402 indicates the ID of the container on which the image is created.
  • sang/nginx indicates the warehouse name, sang is the namespace, and nginx is the image name.
  • v1 indicates the tag of the repository.
  • After the creation is complete, you can view the image you just created through the docker images command.
  • Run a container through the image you just created and access the container. You will find that the default homepage of nginx has changed.

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:
  • .NETCore Docker implements containerization and private image repository management
  • Docker private repository management and deletion of images in local repositories
  • Briefly describe how to install Tomcat image and deploy web project in Docker
  • The simplest implementation of spring boot packaging docker image
  • How to generate a docker image and complete container deployment in a spring boot project
  • How to deploy Vue project using Docker image + nginx
  • Detailed explanation of the latest IDEA process of quickly deploying and running Docker images
  • Detailed explanation of the use of DockerHub image repository
  • Docker image management common operation code examples

<<:  el-table in vue realizes automatic ceiling effect (supports fixed)

>>:  Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

Recommend

Advanced and summary of commonly used sql statements in MySQL database

This article uses examples to describe the common...

Commands to find domain IP address in Linux terminal (five methods)

This tutorial explains how to verify the IP addre...

Centos7 mysql database installation and configuration tutorial

1. System environment The system version after yu...

How to modify the MySQL character set

1. Check the character set of MySQL show variable...

How to solve the error "ERROR 1045 (28000)" when logging in to MySQL

Today, I logged into the server and prepared to m...

Vue+js click arrow to switch pictures

This article example shares the specific code of ...

Detailed deployment of docker+gitlab+gitlab-runner

environment Server: centos7 Client: window Deploy...

How to add website icon?

The first step is to prepare an icon making softwa...

Some tips on deep optimization to improve website access speed

<br />The website access speed can directly ...

Several situations where div is covered by iframe and their solutions

Similar structures: Copy code The code is as foll...

Example of implementing skeleton screen with Vue

Table of contents Skeleton screen use Vue archite...

vue perfectly realizes el-table column width adaptation

Table of contents background Technical Solution S...