Detailed explanation of Docker container data volumes

Detailed explanation of Docker container data volumes

What is

Let’s first look at the concept of Docker:

Package the application and the running environment into a container. The running can be accompanied by the container, but we hope that the data is persistent and that it is possible to share data between containers.

If the data generated by the Docker container is not saved as part of the image by generating a new image through docker commit, then when the container is deleted, the data will naturally disappear.

In order to save data in docker we use volumes.

In a word: It is somewhat similar to RDB and AOF in our Redis

What can I do?

A volume is a directory or file that exists in one or more containers and is mounted to the container by Docker, but does not belong to the Union File System, so it can bypass the Union FileSystem to provide some features for persistent storage or shared data:

The design purpose of the volume is data persistence, which is completely independent of the life cycle of the container. Therefore, Docker will not delete the mounted data volume when the container is deleted.

Features:

  • Data volumes can be used to share or reuse data between containers
  • Changes in the volume can take effect directly
  • Changes to the data volume will not be included in the image update
  • The lifecycle of a data volume container lasts until no container uses it (--volumes from)

Summarize:

  • Persistence of container data
  • Inheritance + shared data between containers

Data Volume

Direct command addition

docker run -it -v /host absolute path directory:/container directory image namedocker run -it -v /host absolute path directory:/container directory:ro image name//with command, specify access rights, ro: read only

Check whether the data volume is mounted successfully:

docker inspect container id 

Add using DockerFile

Create a new mydocker folder in the root directory and enter

You can use the VOLUME instruction in a Dockerfile to add one or more data volumes to the image.

DockerFile Build

For writing DockerFile, you can refer to the DockerFile files of each image in DockerHub, such as tomcat: https://github.com/docker-library/tomcat/blob/300ac03f4696c761a81fa10afbb893f3368061de/8.5/jdk8/openjdk-buster/Dockerfile

#volume test
FROM centos
VOLUME ["/dataVolumeContainer1","/dataVolumeContainer2"]
CMD echo "finished,-------success1"
CMD /bin/bash

Generate an image after build

Get a new image zzyy/centos

Run container

Through the above steps, the volume directory address in the container is already known, where is the corresponding host directory

Remark:

Docker mounts the host directory. Docker access appears cannot open directory, Permission denied

Solution: Add a --privileged=true parameter after mounting the directory

Data volume container

What is

The named container mounts the data volume, and other containers share data by mounting this (parent container). The container that mounts the data volume is called a data volume container.

Transitive sharing between containers (--volumes-from)

docker run -it --name dco2 --volumes-from dc01 zzyy/cenos // dc01 is the first created container, dco2 inherits dc01 to achieve data sharing

The data volume is mounted by the parent container (dc01). If dc01 is mounted on dc02 and dc03 and then deleted, the data volume will still be valid.

The configuration information is transferred between containers, and the life cycle of the data volume continues until no container uses it.

Summarize

This is the end of this article about Docker container data volumes. For more information about Docker container data volumes, 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 data volumes and data containers detailed introduction and examples
  • Docker data volume, data volume container detailed introduction
  • Introduction to container data volumes in Docker
  • Docker container data volume named mount and anonymous mount issues
  • Two ways to manage volumes in Docker
  • Docker data volume common operation code examples
  • A brief summary of Docker container data volume mounting
  • Docker mounts a volume to save MySQL data

<<:  Analysis on how to solve the problem of Navicat Premium connecting to MySQL 8.0 and reporting error "1251"

>>:  JavaScript to implement input box content prompt and hidden function

Recommend

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

Vue implements a small countdown function

Countdown function needs to be implemented in man...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

Randomly generate an eight-digit discount code and save it to the MySQL database

Currently, many businesses are conducting promoti...

Two methods to stretch the background image of a web page

There are two solutions: One is CSS, using backgro...

Implementation example of JS native double-column shuttle selection box

Table of contents When to use Structural branches...

Solve the Linux Tensorflow2.0 installation problem

conda update conda pip install tf-nightly-gpu-2.0...

A simple method to implement Linux timed log deletion

Introduction Linux is a system that can automatic...

uniapp project optimization methods and suggestions

Table of contents 1. Encapsulate complex page dat...

Implementation code for using mongodb database in Docker

Get the mongo image sudo docker pull mongo Run th...

Use CSS to implement special logos or graphics

1. Introduction Since pictures take up a lot of s...

How CSS affects the white screen time during initial loading

Rendering pipeline with external css files In the...