mirror of https://github.com/docker/compose.git
Use env variables from os for interpolation
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
b7d0b704e5
commit
8ab544a770
|
@ -46,7 +46,8 @@ func ConvertCommand(dockerCli command.Cli, options *cli.ProjectOptions) *cobra.C
|
|||
cmd := &cobra.Command{
|
||||
Use: "convert",
|
||||
RunE: docker.WithAwsContext(dockerCli, func(ctx docker.AwsContext, backend *amazon.Backend, args []string) error {
|
||||
project, err := cli.ProjectFromOptions(options)
|
||||
opts := options.WithOsEnv()
|
||||
project, err := cli.ProjectFromOptions(&opts)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue