(ctx context.Context, projectName string, options api.PauseOptions)
| 52 | } |
| 53 | |
| 54 | func (s *composeService) UnPause(ctx context.Context, projectName string, options api.PauseOptions) error { |
| 55 | return Run(ctx, func(ctx context.Context) error { |
| 56 | return s.unPause(ctx, strings.ToLower(projectName), options) |
| 57 | }, "unpause", s.events) |
| 58 | } |
| 59 | |
| 60 | func (s *composeService) unPause(ctx context.Context, projectName string, options api.PauseOptions) error { |
| 61 | containers, err := s.getContainers(ctx, projectName, oneOffExclude, false, options.Services...) |