traefik/vendor/github.com/docker/libcompose/project/project_start.go

17 lines
546 B
Go
Raw Normal View History

package project
import (
"golang.org/x/net/context"
"github.com/docker/libcompose/project/events"
)
// Start starts the specified services (like docker start).
func (p *Project) Start(ctx context.Context, services ...string) error {
return p.perform(events.ProjectStartStart, events.ProjectStartDone, services, wrapperAction(func(wrapper *serviceWrapper, wrappers map[string]*serviceWrapper) {
wrapper.Do(wrappers, events.ServiceStartStart, events.ServiceStart, func(service Service) error {
return service.Start(ctx)
})
}), nil)
}