Skip to content

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:

FieldDescription
NameVolume name
DriverStorage driver (e.g. local)
Mount PointPath on the host filesystem
CreatedCreation timestamp
In UseWhether any container references this volume

Creating a Volume

  1. Click Create Volume
  2. Enter a volume name
  3. Optionally select a driver and add labels
  4. Choose the target environment
  5. 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 data

Managed by VolumeController.

Released under the MIT License.