mirror of https://github.com/docker/compose.git
Merge pull request #1556 from ulyssessouza/config-volumes
Fix volume names to print simple volume names
This commit is contained in:
commit
cd437d13f5
|
@ -170,8 +170,8 @@ func runVolumes(opts convertOptions) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
for _, v := range project.Volumes {
|
||||
fmt.Println(v.Name)
|
||||
for n := range project.Volumes {
|
||||
fmt.Println(n)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue