Volume Management
Create and manage Docker volumes for persistent storage
Overview
Docker volumes provide persistent storage for container data. Dockerman lets you create, inspect, and manage volumes through a visual interface.
Volume List
The Volumes page lists every Docker volume with:
- Volume name
- Driver
- Mount point
- Created time
Creating a Volume
- Click Create on the Volumes page
- Enter a volume name
- Choose a driver (defaults to
local) - Add labels as needed
- Click Create
Using a Volume
You can mount volumes when creating a container:
- In the container create form, go to the Volumes section
- Click Add Mount
- Pick a volume and set the mount path inside the container
- Choose read/write or read-only access
Inspecting a Volume
Click a volume to view:
- Full configuration in JSON
- Host mount point
- Labels and options
- Containers currently using the volume
Removing a Volume
Click Remove to delete a volume. The volume must not be in use by any container.
Use Prune to remove every unused volume and reclaim disk space.