mirror of https://github.com/docker/compose.git
Fix volume names to print simple volume names
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
This commit is contained in:
parent
fb5d51f880
commit
46a7689043
|
@ -170,8 +170,8 @@ func runVolumes(opts convertOptions) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
for _, v := range project.Volumes {
|
for n := range project.Volumes {
|
||||||
fmt.Println(v.Name)
|
fmt.Println(n)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue