Table of Contents
- Inspecting a Volume
- Removing a Volume
- Pruning Unused Volumes
- Verifying Mount Options
- Mounting a Volume as Read-Only
- References
Inspecting a Volume
Usedocker volume inspect to retrieve metadata about your volume, including driver, mount point, labels, and scope:
Removing a Volume
To delete a volume that’s no longer used by any container:Pruning Unused Volumes
Clean up all dangling volumes in one step to free up disk space:Pruning removes all unused volumes. Ensure you have backups of any critical data before proceeding.
Verifying Mount Options
By default, volumes are mounted read-write. To inspect a container’s mount configuration:Mounts section:
The
"RW": true field confirms the volume is mounted read-write inside the container.Mounting a Volume as Read-Only
To ensure data integrity, you can mount a volume as read-only. Use the--mount flag with readonly: