mirror of
https://github.com/containers/podman.git
synced 2025-06-04 21:55:24 +08:00
Trivial refactor on volume addition
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #700 Approved by: rhatdan
This commit is contained in:
@ -658,8 +658,7 @@ func (c *createConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, er
|
||||
// others, if they are included
|
||||
volumes := make([]string, 0, len(c.Volumes))
|
||||
for _, vol := range c.Volumes {
|
||||
splitVol := strings.Split(vol, ":")
|
||||
volumes = append(volumes, splitVol[0])
|
||||
volumes = append(volumes, strings.SplitN(vol, ":", 2)[0])
|
||||
}
|
||||
|
||||
options = append(options, libpod.WithUserVolumes(volumes))
|
||||
|
Reference in New Issue
Block a user