Merge pull request #143 from cpuguy83/add_volume_status

Add `Status` field to Volume type
This commit is contained in:
David Calavera 2016-03-17 10:01:52 -07:00
Родитель 26cdffeca7 3beb091ad6
Коммит 0ec73ff029
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -368,9 +368,10 @@ type MountPoint struct {
// Volume represents the configuration of a volume for the remote API
type Volume struct {
Name string // Name is the name of the volume
Driver string // Driver is the Driver name used to create the volume
Mountpoint string // Mountpoint is the location on disk of the volume
Name string // Name is the name of the volume
Driver string // Driver is the Driver name used to create the volume
Mountpoint string // Mountpoint is the location on disk of the volume
Status map[string]interface{} `json:",omitempty"` // Status provides low-level status information about the volume
}
// VolumesListResponse contains the response for the remote API: