(ctx context.Context, project *types.Project, options api.PushOptions)
| 37 | ) |
| 38 | |
| 39 | func (s *composeService) Push(ctx context.Context, project *types.Project, options api.PushOptions) error { |
| 40 | if options.Quiet { |
| 41 | return s.push(ctx, project, options) |
| 42 | } |
| 43 | return Run(ctx, func(ctx context.Context) error { |
| 44 | return s.push(ctx, project, options) |
| 45 | }, "push", s.events) |
| 46 | } |
| 47 | |
| 48 | func (s *composeService) push(ctx context.Context, project *types.Project, options api.PushOptions) error { |
| 49 | eg, ctx := errgroup.WithContext(ctx) |