We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c3e28d commit e55824fCopy full SHA for e55824f
src/pkg/cli/compose/loader.go
@@ -16,6 +16,10 @@ import (
16
"gopkg.in/yaml.v3"
17
)
18
19
+type Project = compose.Project
20
+
21
+type ServiceConfig = compose.ServiceConfig
22
23
type LoaderOptions struct {
24
ConfigPaths []string
25
WorkingDir string
@@ -59,7 +63,7 @@ func (c Loader) LoadProjectName(ctx context.Context) (string, error) {
59
63
return project.Name, nil
60
64
}
61
65
62
-func (c Loader) LoadProject(ctx context.Context) (*compose.Project, error) {
66
+func (c Loader) LoadProject(ctx context.Context) (*Project, error) {
67
// Set logrus send logs via the term package
68
termLogger := logs.TermLogFormatter{Term: term.DefaultTerm}
69
logrus.SetFormatter(termLogger)
0 commit comments