mirror of
https://github.com/docker/compose.git
synced 2025-07-20 04:04:29 +02:00
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 {
|
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…
x
Reference in New Issue
Block a user