1234567891011121314 |
- package types // import "github.com/docker/docker/api/types"
- import "github.com/docker/docker/api/types/volume"
- // Volume volume
- //
- // Deprecated: use github.com/docker/docker/api/types/volume.Volume
- type Volume = volume.Volume
- // VolumeUsageData Usage details about the volume. This information is used by the
- // `GET /system/df` endpoint, and omitted in other endpoints.
- //
- // Deprecated: use github.com/docker/docker/api/types/volume.UsageData
- type VolumeUsageData = volume.UsageData
|