mirror of https://github.com/docker/docs.git
Fix broken link (#2870)
Signed-off-by: Michael Spetsiotis <michaelspets1234@gmail.com>
This commit is contained in:
parent
b849864311
commit
b9a9789294
|
@ -20,7 +20,7 @@ Docker Engine.
|
||||||
## Data volumes
|
## Data volumes
|
||||||
|
|
||||||
A *data volume* is a specially-designated directory within one or more
|
A *data volume* is a specially-designated directory within one or more
|
||||||
containers that bypasses the [*Union File System*](/engine/reference/glossary.md#union-file-system).
|
containers that bypasses the [*Union File System*](/glossary/?term=Union file system).
|
||||||
Data volumes provide several useful features for persistent or shared data:
|
Data volumes provide several useful features for persistent or shared data:
|
||||||
|
|
||||||
- Volumes are initialized when a container is created. If the container's
|
- Volumes are initialized when a container is created. If the container's
|
||||||
|
@ -32,7 +32,7 @@ Data volumes provide several useful features for persistent or shared data:
|
||||||
- Changes to a data volume will not be included when you update an image.
|
- Changes to a data volume will not be included when you update an image.
|
||||||
- Data volumes persist even if the container itself is deleted.
|
- Data volumes persist even if the container itself is deleted.
|
||||||
|
|
||||||
Data volumes are designed to persist data, independent of the container's lifecycle.
|
Data volumes are designed to persist data, independent of the container's lifecycle.
|
||||||
Docker therefore *never* automatically deletes volumes when you remove
|
Docker therefore *never* automatically deletes volumes when you remove
|
||||||
a container, nor will it "garbage collect" volumes that are no longer
|
a container, nor will it "garbage collect" volumes that are no longer
|
||||||
referenced by a container.
|
referenced by a container.
|
||||||
|
|
Loading…
Reference in New Issue