Migrate Sirupsen to sirupsen.
This commit is contained in:
parent
c134dcd6fe
commit
fb4ba7af2b
684 changed files with 92394 additions and 33943 deletions
4
vendor/github.com/docker/libcompose/docker/builder/builder.go
generated
vendored
4
vendor/github.com/docker/libcompose/docker/builder/builder.go
generated
vendored
|
@ -8,7 +8,6 @@ import (
|
|||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/docker/cli/cli/command/image/build"
|
||||
"github.com/docker/docker/api/types"
|
||||
"github.com/docker/docker/builder/dockerignore"
|
||||
|
@ -20,6 +19,7 @@ import (
|
|||
"github.com/docker/docker/pkg/streamformatter"
|
||||
"github.com/docker/docker/pkg/term"
|
||||
"github.com/docker/libcompose/logger"
|
||||
"github.com/sirupsen/logrus"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
|
@ -42,6 +42,7 @@ type DaemonBuilder struct {
|
|||
ForceRemove bool
|
||||
Pull bool
|
||||
BuildArgs map[string]*string
|
||||
CacheFrom []string
|
||||
LoggerFactory logger.Factory
|
||||
}
|
||||
|
||||
|
@ -96,6 +97,7 @@ func (d *DaemonBuilder) Build(ctx context.Context, imageName string) error {
|
|||
Dockerfile: d.Dockerfile,
|
||||
AuthConfigs: d.AuthConfigs,
|
||||
BuildArgs: d.BuildArgs,
|
||||
CacheFrom: d.CacheFrom,
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue