18 lines
636 B
Go
18 lines
636 B
Go
|
package project
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
|
||
|
"github.com/docker/libcompose/project/events"
|
||
|
"github.com/docker/libcompose/project/options"
|
||
|
)
|
||
|
|
||
|
// Build builds the specified services (like docker build).
|
||
|
func (p *Project) Build(ctx context.Context, buildOptions options.Build, services ...string) error {
|
||
|
return p.perform(events.ProjectBuildStart, events.ProjectBuildDone, services, wrapperAction(func(wrapper *serviceWrapper, wrappers map[string]*serviceWrapper) {
|
||
|
wrapper.Do(wrappers, events.ServiceBuildStart, events.ServiceBuild, func(service Service) error {
|
||
|
return service.Build(ctx, buildOptions)
|
||
|
})
|
||
|
}), nil)
|
||
|
}
|