@@ -7,15 +7,15 @@ import (
7
7
"strings"
8
8
9
9
"github.com/docker/app/internal/cliopts"
10
- store2 "github.com/docker/app/internal/store"
10
+ "github.com/docker/app/internal/store"
11
11
12
12
"github.com/deislabs/cnab-go/claim"
13
13
"github.com/deislabs/cnab-go/driver"
14
14
dockerDriver "github.com/deislabs/cnab-go/driver/docker"
15
15
"github.com/docker/app/internal"
16
16
"github.com/docker/cli/cli/command"
17
17
"github.com/docker/cli/cli/context/docker"
18
- "github.com/docker/cli/cli/context/store"
18
+ cliContext "github.com/docker/cli/cli/context/store"
19
19
"github.com/docker/docker/api/types/container"
20
20
"github.com/docker/docker/api/types/mount"
21
21
)
@@ -39,7 +39,7 @@ func RequiredClaimBindMount(c claim.Claim, dockerCli command.Cli) (BindMount, er
39
39
40
40
// RequiredBindMount Returns the path required to bind mount when running
41
41
// the invocation image.
42
- func RequiredBindMount (targetContextName string , targetOrchestrator string , s store .Store ) (BindMount , error ) {
42
+ func RequiredBindMount (targetContextName string , targetOrchestrator string , s cliContext .Store ) (BindMount , error ) {
43
43
if targetOrchestrator == "kubernetes" {
44
44
return BindMount {}, nil
45
45
}
@@ -119,7 +119,7 @@ func prepareDriver(dockerCli command.Cli, bindMount BindMount, stdout io.Writer)
119
119
return d , errBuf
120
120
}
121
121
122
- func SetupDriver (installation * store2 .Installation , dockerCli command.Cli , opts * cliopts.InstallerContextOptions , stdout io.Writer ) (driver.Driver , * bytes.Buffer , error ) {
122
+ func SetupDriver (installation * store .Installation , dockerCli command.Cli , opts * cliopts.InstallerContextOptions , stdout io.Writer ) (driver.Driver , * bytes.Buffer , error ) {
123
123
dockerCli , err := opts .SetInstallerContext (dockerCli )
124
124
if err != nil {
125
125
return nil , nil , err
0 commit comments