mirror of
https://github.com/wsargent/docker-cheat-sheet.git
synced 2025-12-17 23:50:13 +01:00
change docker volumes to docker volume
Did this change at some point?
This commit is contained in:
parent
891cc26158
commit
50e1d0a003
1 changed files with 4 additions and 4 deletions
|
|
@ -272,13 +272,13 @@ Docker volumes are [free-floating filesystems](https://docs.docker.com/userguide
|
||||||
|
|
||||||
### Lifecycle
|
### Lifecycle
|
||||||
|
|
||||||
* [`docker volumes create`](https://docs.docker.com/engine/reference/commandline/volume_create/)
|
* [`docker volume create`](https://docs.docker.com/engine/reference/commandline/volume_create/)
|
||||||
* [`docker volumes rm`](https://docs.docker.com/engine/reference/commandline/volume_rm/)
|
* [`docker volume rm`](https://docs.docker.com/engine/reference/commandline/volume_rm/)
|
||||||
|
|
||||||
### Info
|
### Info
|
||||||
|
|
||||||
* [`docker volumes ls`](https://docs.docker.com/engine/reference/commandline/volume_ls/)
|
* [`docker volume ls`](https://docs.docker.com/engine/reference/commandline/volume_ls/)
|
||||||
* [`docker volumes inspect`](https://docs.docker.com/engine/reference/commandline/volume_inspect/)
|
* [`docker volume inspect`](https://docs.docker.com/engine/reference/commandline/volume_inspect/)
|
||||||
|
|
||||||
Volumes are useful in situations where you can't use links (which are TCP/IP only). For instance, if you need to have two docker instances communicate by leaving stuff on the filesystem.
|
Volumes are useful in situations where you can't use links (which are TCP/IP only). For instance, if you need to have two docker instances communicate by leaving stuff on the filesystem.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue