Volume Management
Manage Docker volumes across your environments. List, create, and delete volumes, and perform backup and restore operations on volume data.
INFO
Volume Management requires a Pro license. See Licensing for details.
Access
Navigate to Volumes in the sidebar or go to /volumes.
Key Features
- List all Docker volumes per environment with size and driver info
- Create new named volumes with optional driver and label configuration
- Delete unused volumes
- Backup volume data to a downloadable archive
- Restore volume data from a previously created backup
Usage
Browsing Volumes
Select an environment tab to see all volumes on that host. Each volume displays:
| Field | Description |
|---|---|
| Name | Volume name |
| Driver | Storage driver (e.g. local) |
| Mount Point | Path on the host filesystem |
| Created | Creation timestamp |
| In Use | Whether any container references this volume |
Creating a Volume
- Click Create Volume
- Enter a volume name
- Optionally select a driver and add labels
- Choose the target environment
- Click Create
Backup & Restore
To back up a volume, click the Backup action on any volume row. This creates a compressed archive of the volume contents that downloads to your browser.
To restore, click Restore on a volume and upload a previously created backup archive. The existing volume contents will be replaced.
WARNING
Restoring a volume overwrites all existing data in that volume. Ensure containers using the volume are stopped before restoring.
API
GET /api/volumes/{env} # List volumes in an environment
POST /api/volumes/{env} # Create a volume
DELETE /api/volumes/{env}/{name} # Delete a volume
POST /api/volumes/{env}/{name}/backup # Backup volume data
POST /api/volumes/{env}/{name}/restore # Restore volume dataManaged by VolumeController.