1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:42:08 +02:00

docker-volume: add page (#7771)

This commit is contained in:
Axel Navarro 2022-02-20 05:37:06 -03:00 committed by GitHub
parent 4cc80092f9
commit ae90383189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,36 @@
# docker volume
> Manage Docker volumes.
> More information: <https://docs.docker.com/engine/reference/commandline/volume/>.
- Create a volume:
`docker volume create {{volume_name}}`
- Create a volume with a specific label:
`docker volume create --label {{label}} {{volume_name}}`
- Create a `tmpfs` volume a size of 100 MiB and an uid of 1000:
`docker volume create --opt {{type}}={{tmpfs}} --opt {{device}}={{tmpfs}} --opt {{o}}={{size=100m,uid=1000}} {{volume_name}}`
- List all volumes:
`docker volume ls`
- Remove a volume:
`docker volume rm {{volume_name}}`
- Display information about a volume:
`docker volume inspect {{volume_name}}`
- Remove all unused local volumes:
`docker volume prune`
- Display help for a subcommand:
`docker volume {{subcommand}} --help`