Fix v3 hostpath path concatenate error (#1222)

This commit is contained in:
Hang Yan
2019-12-28 18:40:36 +08:00
committed by GitHub
parent ae138029a1
commit 25337eb82c
4 changed files with 30 additions and 3 deletions
+1 -2
View File
@@ -164,9 +164,8 @@ func loadV3Volumes(volumes []types.ServiceVolumeConfig) []string {
var volArray []string
for _, vol := range volumes {
// There will *always* be Source when parsing
v := normalizeVolumes(vol.Source)
v := vol.Source
if vol.Target != "" {
v = v + ":" + vol.Target