MCPcopy
hub / github.com/docker/compose / UnPause

Method UnPause

pkg/compose/pause.go:54–58  ·  view source on GitHub ↗
(ctx context.Context, projectName string, options api.PauseOptions)

Source from the content-addressed store, hash-verified

52}
53
54func (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
60func (s *composeService) unPause(ctx context.Context, projectName string, options api.PauseOptions) error {
61 containers, err := s.getContainers(ctx, projectName, oneOffExclude, false, options.Services...)

Callers

nothing calls this directly

Calls 2

unPauseMethod · 0.95
RunFunction · 0.85

Tested by

no test coverage detected