| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- Copyright 2020 Docker Compose CLI authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package compose
- import (
- "context"
- "github.com/docker/compose-cli/api/compose"
- "github.com/docker/compose-cli/api/progress"
- "github.com/docker/compose-cli/utils"
- "github.com/compose-spec/compose-go/types"
- )
- func (s *composeService) Restart(ctx context.Context, project *types.Project, options compose.RestartOptions) error {
- return progress.Run(ctx, func(ctx context.Context) error {
- return s.restart(ctx, project, options)
- })
- }
- func (s *composeService) restart(ctx context.Context, project *types.Project, options compose.RestartOptions) error {
- ctx, err := s.getUpdatedContainersStateContext(ctx, project.Name)
- if err != nil {
- return err
- }
- if len(options.Services) == 0 {
- options.Services = project.ServiceNames()
- }
- err = InDependencyOrder(ctx, project, func(c context.Context, service types.ServiceConfig) error {
- if utils.StringContains(options.Services, service.Name) {
- return s.restartService(ctx, service.Name, options.Timeout)
- }
- return nil
- })
- if err != nil {
- return err
- }
- return nil
- }
|