Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pkg/compose/build_classic.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -44,6 +44,8 @@ import (
"github.com/docker/docker/pkg/streamformatter"

"github.com/docker/compose/v2/pkg/api"

"github.com/sirupsen/logrus"
)

//nolint:gocyclo
Expand DownExpand Up@@ -180,7 +182,7 @@ func (s *composeService) doBuildClassic(ctx context.Context, project *types.Proj
aux := func(msg jsonmessage.JSONMessage) {
var result dockertypes.BuildResult
if err := json.Unmarshal(*msg.Aux, &result); err != nil {
fmt.Fprintf(s.stderr(), "Failed to parse aux message: %s", err)
logrus.Errorf("Failed to parse aux message: %s", err)
} else {
imageID = result.ID
}
Expand Down
3 changes: 2 additions & 1 deletion pkg/compose/down.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,6 +33,7 @@ import (
imageapi "github.com/docker/docker/api/types/image"
"github.com/docker/docker/api/types/network"
"github.com/docker/docker/errdefs"
"github.com/sirupsen/logrus"
"golang.org/x/sync/errgroup"
)

Expand DownExpand Up@@ -107,7 +108,7 @@ func (s *composeService) down(ctx context.Context, projectName string, options a
}

if !resourceToRemove && len(ops) == 0 {
fmt.Fprintf(s.stderr(), "Warning: No resource found to remove for project %q.\n", projectName)
logrus.Warnf("Warning: No resource found to remove for project %q.", projectName)
}

eg, _ := errgroup.WithContext(ctx)
Expand Down