Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Brief introduction of Docker data persistence

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

There are two ways to persist data in Docker:

Data volume (Data Volumes)

Mount host directory (Bind mounts)

Data volumes:

Data volumes can be shared and reused between containers

Changes to the data volume will take effect immediately

Updates to data volumes do not affect mirroring

The data volume will always exist by default, even if the container is deleted

$docker volume create my-vol # create a data volume

$docker volume ls # to see which volumes are available

$docker volume inspect my-vol # View volume details

$docker run-d-P-- name web-v my-vol:/wepapp training/webapp python app.py # Mount the data volume to the container's / webapp directory

When using the-P flag, Docker randomly maps a port of 49000 to 49900 to a network port open in the internal container.

$docker inspect web # View container details

$docker rm-f web # forcibly delete a running container

$docker volume rm my-vol # delete volume

$docker volume prune # Clean up useless volumes

Mount the host directory:

$docker run-d-P-- name web-v / src/webapp:/opt/webapp training/webapp python app.py # Mount the host's / src/webapp directory to the container's / opt/webapp directory

$docker run-d-P-- name web-v $HOME/.bash_history:/root/.bash_history training/webapp python app.py # Mount the host file $HOME/.bash_histor to the container

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report