2021-02-15 09:13:41 +01:00
|
|
|
/*
|
|
|
|
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"
|
2021-06-03 13:57:56 +02:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2021-02-15 09:13:41 +01:00
|
|
|
|
2021-02-15 10:46:56 +01:00
|
|
|
"github.com/compose-spec/compose-go/types"
|
2021-06-15 09:57:38 +02:00
|
|
|
"github.com/docker/compose-cli/pkg/api"
|
2021-02-15 10:46:56 +01:00
|
|
|
moby "github.com/docker/docker/api/types"
|
|
|
|
"golang.org/x/sync/errgroup"
|
2021-06-15 09:57:38 +02:00
|
|
|
|
|
|
|
"github.com/docker/compose-cli/pkg/progress"
|
|
|
|
"github.com/docker/compose-cli/pkg/prompt"
|
2021-02-15 09:13:41 +01:00
|
|
|
)
|
|
|
|
|
2021-06-14 16:26:14 +02:00
|
|
|
func (s *composeService) Remove(ctx context.Context, project *types.Project, options api.RemoveOptions) error {
|
2021-04-20 15:56:48 +02:00
|
|
|
services := options.Services
|
|
|
|
if len(services) == 0 {
|
|
|
|
services = project.ServiceNames()
|
|
|
|
}
|
|
|
|
|
|
|
|
containers, err := s.getContainers(ctx, project.Name, oneOffInclude, true, services...)
|
2021-02-15 09:13:41 +01:00
|
|
|
if err != nil {
|
2021-06-03 13:57:56 +02:00
|
|
|
return err
|
2021-02-15 09:13:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stoppedContainers := containers.filter(func(c moby.Container) bool {
|
2021-06-15 09:57:38 +02:00
|
|
|
return c.State != ContainerRunning
|
2021-02-15 09:13:41 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
var names []string
|
|
|
|
stoppedContainers.forEach(func(c moby.Container) {
|
|
|
|
names = append(names, getCanonicalContainerName(c))
|
|
|
|
})
|
|
|
|
|
2021-06-03 13:57:56 +02:00
|
|
|
if len(names) == 0 {
|
|
|
|
fmt.Println("No stopped containers")
|
|
|
|
return nil
|
2021-02-15 09:13:41 +01:00
|
|
|
}
|
2021-06-03 13:57:56 +02:00
|
|
|
msg := fmt.Sprintf("Going to remove %s", strings.Join(names, ", "))
|
|
|
|
if options.Force {
|
|
|
|
fmt.Println(msg)
|
|
|
|
} else {
|
|
|
|
confirm, err := prompt.User{}.Confirm(msg, false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !confirm {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return progress.Run(ctx, func(ctx context.Context) error {
|
|
|
|
return s.remove(ctx, stoppedContainers, options)
|
|
|
|
})
|
|
|
|
}
|
2021-02-15 09:13:41 +01:00
|
|
|
|
2021-06-14 16:26:14 +02:00
|
|
|
func (s *composeService) remove(ctx context.Context, containers Containers, options api.RemoveOptions) error {
|
2021-02-15 09:13:41 +01:00
|
|
|
w := progress.ContextWriter(ctx)
|
|
|
|
eg, ctx := errgroup.WithContext(ctx)
|
2021-07-07 11:54:42 +02:00
|
|
|
for _, container := range containers {
|
|
|
|
container := container
|
2021-02-15 09:13:41 +01:00
|
|
|
eg.Go(func() error {
|
2021-07-07 11:54:42 +02:00
|
|
|
eventName := getContainerProgressName(container)
|
2021-02-15 09:13:41 +01:00
|
|
|
w.Event(progress.RemovingEvent(eventName))
|
2021-07-07 11:54:42 +02:00
|
|
|
err := s.apiClient.ContainerRemove(ctx, container.ID, moby.ContainerRemoveOptions{
|
2021-02-15 09:13:41 +01:00
|
|
|
RemoveVolumes: options.Volumes,
|
|
|
|
Force: options.Force,
|
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
w.Event(progress.RemovedEvent(eventName))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
2021-06-03 13:57:56 +02:00
|
|
|
return eg.Wait()
|
2021-02-15 09:13:41 +01:00
|
|
|
}
|