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-08-31 18:53:24 +02:00
|
|
|
"github.com/docker/compose/v2/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
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
"github.com/docker/compose/v2/pkg/progress"
|
|
|
|
"github.com/docker/compose/v2/pkg/prompt"
|
2021-02-15 09:13:41 +01:00
|
|
|
)
|
|
|
|
|
2022-03-09 08:25:01 +01:00
|
|
|
func (s *composeService) Remove(ctx context.Context, projectName string, options api.RemoveOptions) error {
|
2022-04-13 09:49:01 +02:00
|
|
|
projectName = strings.ToLower(projectName)
|
2023-03-28 09:43:16 +02:00
|
|
|
|
|
|
|
if options.Stop {
|
|
|
|
err := s.Stop(ctx, projectName, api.StopOptions{
|
|
|
|
Services: options.Services,
|
|
|
|
Project: options.Project,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 10:58:20 +02:00
|
|
|
containers, err := s.getContainers(ctx, projectName, oneOffExclude, true, options.Services...)
|
2021-02-15 09:13:41 +01:00
|
|
|
if err != nil {
|
2022-03-09 16:20:02 +01:00
|
|
|
if api.IsNotFoundError(err) {
|
|
|
|
fmt.Fprintln(s.stderr(), "No stopped containers")
|
|
|
|
return nil
|
|
|
|
}
|
2021-06-03 13:57:56 +02:00
|
|
|
return err
|
2021-02-15 09:13:41 +01:00
|
|
|
}
|
|
|
|
|
2022-04-11 10:58:20 +02:00
|
|
|
if options.Project != nil {
|
|
|
|
containers = containers.filter(isService(options.Project.ServiceNames()...))
|
|
|
|
}
|
|
|
|
|
2023-03-28 09:43:16 +02:00
|
|
|
var stoppedContainers Containers
|
|
|
|
for _, container := range containers {
|
|
|
|
// We have to inspect containers, as State reported by getContainers suffers a race condition
|
|
|
|
inspected, err := s.apiClient().ContainerInspect(ctx, container.ID)
|
|
|
|
if api.IsNotFoundError(err) {
|
|
|
|
// Already removed. Maybe configured with auto-remove
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !inspected.State.Running || (options.Stop && s.dryRun) {
|
|
|
|
stoppedContainers = append(stoppedContainers, container)
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 09:13:41 +01:00
|
|
|
|
|
|
|
var names []string
|
|
|
|
stoppedContainers.forEach(func(c moby.Container) {
|
|
|
|
names = append(names, getCanonicalContainerName(c))
|
|
|
|
})
|
2023-03-28 09:43:16 +02:00
|
|
|
fmt.Fprintln(s.stderr(), names)
|
2021-02-15 09:13:41 +01:00
|
|
|
|
2021-06-03 13:57:56 +02:00
|
|
|
if len(names) == 0 {
|
2022-03-09 16:20:02 +01:00
|
|
|
fmt.Fprintln(s.stderr(), "No stopped containers")
|
2021-06-03 13:57:56 +02:00
|
|
|
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 {
|
2022-12-15 09:35:26 +01:00
|
|
|
fmt.Fprintln(s.stdout(), msg)
|
2021-06-03 13:57:56 +02:00
|
|
|
} else {
|
2023-01-06 13:49:36 +01:00
|
|
|
confirm, err := prompt.NewPrompt(s.stdin(), s.stdout()).Confirm(msg, false)
|
2021-06-03 13:57:56 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !confirm {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2023-05-02 20:15:35 +02:00
|
|
|
return progress.RunWithTitle(ctx, func(ctx context.Context) error {
|
2021-06-03 13:57:56 +02:00
|
|
|
return s.remove(ctx, stoppedContainers, options)
|
2023-05-02 20:15:35 +02:00
|
|
|
}, s.stderr(), "Removing")
|
2021-06-03 13:57:56 +02:00
|
|
|
}
|
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))
|
2022-02-23 11:28:56 +01: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
|
|
|
}
|