mirror of
https://github.com/docker/compose.git
synced 2025-07-20 20:24:30 +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 {
|
||||
return err
|
||||
}
|
||||
for _, v := range project.Volumes {
|
||||
fmt.Println(v.Name)
|
||||
for n := range project.Volumes {
|
||||
fmt.Println(n)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user