|
@@ -94,15 +94,15 @@ func (l *Link) ToEnv() []string {
|
|
|
|
|
|
if l.ChildEnvironment != nil {
|
|
if l.ChildEnvironment != nil {
|
|
for _, v := range l.ChildEnvironment {
|
|
for _, v := range l.ChildEnvironment {
|
|
- parts := strings.SplitN(v, "=", 2)
|
|
|
|
- if len(parts) < 2 {
|
|
|
|
|
|
+ name, val, ok := strings.Cut(v, "=")
|
|
|
|
+ if !ok {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
// Ignore a few variables that are added during docker build (and not really relevant to linked containers)
|
|
// Ignore a few variables that are added during docker build (and not really relevant to linked containers)
|
|
- if parts[0] == "HOME" || parts[0] == "PATH" {
|
|
|
|
|
|
+ if name == "HOME" || name == "PATH" {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
- env = append(env, fmt.Sprintf("%s_ENV_%s=%s", alias, parts[0], parts[1]))
|
|
|
|
|
|
+ env = append(env, fmt.Sprintf("%s_ENV_%s=%s", alias, name, val))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return env
|
|
return env
|