Docker data volume common operation code examples

Docker data volume common operation code examples

If the developer uses Dockerfile to build the image, they can also declare the data volume when building the image, for example:

FROM nginx
ADD https://www.baidu.com/img/bd_logo1.png /usr/share/nginx/html/
RUN echo "hello docker volume!">/usr/share/nginx/html/index.html
VOLUME /usr/share/nginx/html/

In this way, an anonymous data volume is configured. During operation, data is written to the /usr/share/nginx/html/ directory, which can achieve stateless changes in the container storage layer. View all data volumes

Use the following command to view all data volumes:

docker volume ls

As shown in the figure:

View data volume details

You can view data details according to the volume name, as follows:

docker volume inspect

The execution result is as follows:

Deleting a Data Volume

You can use the docker volume rm command to delete a data volume, or you can use docker volume prune to delete data volumes in batches, as follows:



During batch deletion, all data volumes were not deleted, and one was left. This is because the data volume is still in use. Stop and remove the related containers, and then delete the data volume again to successfully delete it, as shown in the figure:

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 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
  • Detailed explanation of Docker container data volumes
  • A brief summary of Docker container data volume mounting
  • Docker mounts a volume to save MySQL data

<<:  JavaScript to achieve slow motion animation effect

>>:  Analysis of MySql index usage strategy

Recommend

Detailed explanation of how to restore database data through MySQL binary log

Website administrators often accidentally delete ...

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

Currently, many businesses are conducting promoti...

Summary of several common ways to abbreviate javascript code

Table of contents Preface Arrow Functions Master ...

Detailed explanation of vue page state persistence

Table of contents Code: Replenish: Summarize Requ...

Vue echarts realizes horizontal bar chart

This article shares the specific code of vue echa...

Detailed tutorial on installing and using Kong API Gateway with Docker

1 Introduction Kong is not a simple product. The ...

Core skills that web front-end development engineers need to master

The content involved in Web front-end development...

Detailed explanation of using split command to split Linux files

A few simple Linux commands let you split and rea...

Solution to prevent caching in pages

Solution: Add the following code in <head>: ...

MySql import CSV file or tab-delimited file

Sometimes we need to import some data from anothe...

Detailed explanation of Vue router routing guard

Table of contents 1. Global beforeEach 1. Global ...

Detailed Analysis of Event Bubbling Mechanism in JavaScript

What is bubbling? There are three stages in DOM e...

An article teaches you how to implement a recipe system with React

Table of contents 1. Recipe Collection 1.1 Projec...