forked from toolshed/abra
		
	feat: more info on volumes. skip driver info
This commit is contained in:
		| @ -31,13 +31,10 @@ var appVolumeListCommand = cli.Command{ | ||||
| 			logrus.Fatal(err) | ||||
| 		} | ||||
|  | ||||
| 		table := formatter.CreateTable([]string{"driver", "volume name"}) | ||||
| 		table := formatter.CreateTable([]string{"name", "created", "mounted"}) | ||||
| 		var volTable [][]string | ||||
| 		for _, volume := range volumeList { | ||||
| 			volRow := []string{ | ||||
| 				volume.Driver, | ||||
| 				volume.Name, | ||||
| 			} | ||||
| 			volRow := []string{volume.Name, volume.CreatedAt, volume.Mountpoint} | ||||
| 			volTable = append(volTable, volRow) | ||||
| 		} | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user