Docker data storage tmpfs mounts detailed explanation

Docker data storage tmpfs mounts detailed explanation

Before reading this article, I hope you have a basic understanding of Volumes and Bind mounts. For details, please refer to the following articles:

  • Docker Data Persistence Volumes
  • Docker data persistence - Bind mounts

tmpfs mounts

Volumes and Bind mounts modes enable us to share files between the host and the container so that we can persist data on the host to avoid the problem of data loss after the container is stopped due to writing to the container storage layer.

If you are running Docker on Linux, there is another solution to avoid writing data to the container storage layer: tmpfs mounts.

tmpfs mounts, as the name implies, are a type of non-persistent data storage. It only stores data in the host's memory. Once the container stops running, the tmpfs mounts will be removed, resulting in data loss.

Use of tmpfs mounts

We can use tmpfs mounts by specifying the --tmpfs parameter or --mount parameter when running the container:

$ docker run -d \
 -it \
 --name tmptest \
 --mount type=tmpfs,destination=/app \
 nginx:latest
$ docker run -d \
 -it \
 --name tmptest \
 --tmpfs /app \
 nginx:latest

The --tmpfs parameter cannot be used to specify any other options and cannot be used with Swarm Services.

Use docker container inspect tmptest command and then view Mounts section to see:

"Tmpfs": {
 "/app": ""
},

Optional tmpfs mounts

An example:

docker run -d \
 -it \
 --name tmptest \
 --mount type=tmpfs,destination=/app,tmpfs-mode=1770 \
 nginx:latest

tmpfs mounts usage scenarios

Please refer to this article: Docker Data Storage Summary

References

https://docs.docker.com/storage/tmpfs/

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to modify the storage location of Docker default images and containers
  • Detailed explanation of Docker's persistent storage and data sharing
  • Docker Data Storage Volumes Detailed Explanation
  • Docker storage driver introduction
  • Detailed explanation of Bind mounts for Docker data storage
  • Summary of Docker Data Storage
  • Solution to the problem of insufficient storage resource pool of Docker server

<<:  JavaScript to implement login slider verification

>>:  Detailed explanation of the standard MySQL (x64) Windows version installation process

Recommend

Detailed explanation of character sets and validation rules in MySQL

1Several common character sets In MySQL, the most...

Native js realizes the drag and drop of the nine-square grid

Use native JS to write a nine-square grid to achi...

Two types of tab applications in web design

Nowadays, tabs are widely used in web design, but...

Learn MySQL execution plan

Table of contents 1. Introduction to the Implemen...

Detailed explanation of the knowledge points of using TEXT/BLOB types in MySQL

1. The difference between TEXT and BLOB The only ...

Detailed steps for adding hosts you need to monitor in zabbix

Add monitoring host Host 192.168.179.104 is added...

How to create a Django project + connect to MySQL

1: django-admin.py startproject project name 2: c...

Solve the error "Can't locate ExtUtils/MakeMaker.pm in @INC"

When installing mha4mysql, the steps are roughly:...

Pagination Examples and Good Practices

<br />Structure and hierarchy reduce complex...

MySQL fuzzy query statement collection

SQL fuzzy query statement The general fuzzy state...

Docker network principles and detailed analysis of custom networks

Docker virtualizes a bridge on the host machine. ...

Div exceeds hidden text and hides the CSS code beyond the div part

Before hiding: After hiding: CSS: Copy code The co...

CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

1. Uninstalling MySQL 5.7 1.1查看yum是否安裝過mysql cd y...

A simple example of how to implement fuzzy query in Vue

Preface The so-called fuzzy query is to provide q...