Volume details: {volumeName}
{#if loading}
{:else if error}
{error}
{:else if volumeData}

Basic information

Name

{volumeData.Name}

Driver

{volumeData.Driver}

Scope

{volumeData.Scope}

Created

{formatDate(volumeData.CreatedAt)}

Mountpoint

{volumeData.Mountpoint}

The location on the host where the volume data is stored

{#if volumeData.Options && Object.keys(volumeData.Options).length > 0}

Driver options

{#each Object.entries(volumeData.Options) as [key, value]}
{key} {value}
{/each}
{:else}

Driver options

No driver options configured

{/if} {#if volumeData.Labels && Object.keys(volumeData.Labels).length > 0}

Labels

{#each Object.entries(volumeData.Labels) as [key, value]}
{key} {value}
{/each}
{/if} {#if volumeData.Status}

Status

{#each Object.entries(volumeData.Status) as [key, value]}
{key} {value}
{/each}
{/if}

Note: Removing this volume will permanently delete all data stored in it. Make sure no containers are using this volume before removal.

{/if}