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
2 changes: 1 addition & 1 deletion pkg/composer/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func (c *Composer) logs(ctx context.Context, containers map[string]serviceparser
if lo.Tail == "all" {
args = append(args, "+0")
} else {
args = append(args, lo.Tail)
}
args = append(args, lo.Tail)
}

args = append(args, id)
Expand Down
3 changes: 2 additions & 1 deletion run_mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ func copyExistingContents(source, destination string) error {
return err
}
if len(dstList) != 0 {
return errors.Errorf("volume at %q is not initially empty", destination)
// not an error, see https://github.com/containerd/nerdctl/issues/232
logrus.Debugf("volume at %q is not initially empty", destination)
}
return fs.CopyDir(destination, source)
}