forked from LaconicNetwork/kompose
Update vendoring as well as libcompose
This commit updates libcompose in order to merge in https://github.com/docker/libcompose/pull/423 which affected https://github.com/kubernetes-incubator/kompose/issues/92 by not erroring out when an image name wasn't provided. Closes https://github.com/kubernetes-incubator/kompose/issues/92 As well as knocks out the last required milestone for a 0.2.1 release https://github.com/kubernetes-incubator/kompose/milestone/2
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@ type EnvfileLookup struct {
|
||||
// Lookup creates a string slice of string containing a "docker-friendly" environment string
|
||||
// in the form of 'key=value'. It gets environment values using a '.env' file in the specified
|
||||
// path.
|
||||
func (l *EnvfileLookup) Lookup(key, serviceName string, config *config.ServiceConfig) []string {
|
||||
func (l *EnvfileLookup) Lookup(key string, config *config.ServiceConfig) []string {
|
||||
envs, err := opts.ParseEnvFile(l.Path)
|
||||
if err != nil {
|
||||
return []string{}
|
||||
|
||||
Reference in New Issue
Block a user