mirror of
https://github.com/docker/compose.git
synced 2026-06-26 03:04:15 +00:00
Merge pull request #1556 from ulyssessouza/config-volumes
Fix volume names to print simple volume names
This commit is contained in:
commit
cd437d13f5
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue