| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | 
							- /*
 
-    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"
 
- 	"sort"
 
- 	"golang.org/x/sync/errgroup"
 
- 	"github.com/docker/compose/v2/pkg/api"
 
- )
 
- func (s *composeService) Ps(ctx context.Context, projectName string, options api.PsOptions) ([]api.ContainerSummary, error) {
 
- 	oneOff := oneOffExclude
 
- 	if options.All {
 
- 		oneOff = oneOffInclude
 
- 	}
 
- 	containers, err := s.getContainers(ctx, projectName, oneOff, true, options.Services...)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	summary := make([]api.ContainerSummary, len(containers))
 
- 	eg, ctx := errgroup.WithContext(ctx)
 
- 	for i, container := range containers {
 
- 		i, container := i, container
 
- 		eg.Go(func() error {
 
- 			var publishers []api.PortPublisher
 
- 			sort.Slice(container.Ports, func(i, j int) bool {
 
- 				return container.Ports[i].PrivatePort < container.Ports[j].PrivatePort
 
- 			})
 
- 			for _, p := range container.Ports {
 
- 				publishers = append(publishers, api.PortPublisher{
 
- 					URL:           p.IP,
 
- 					TargetPort:    int(p.PrivatePort),
 
- 					PublishedPort: int(p.PublicPort),
 
- 					Protocol:      p.Type,
 
- 				})
 
- 			}
 
- 			inspect, err := s.apiClient.ContainerInspect(ctx, container.ID)
 
- 			if err != nil {
 
- 				return err
 
- 			}
 
- 			var (
 
- 				health   string
 
- 				exitCode int
 
- 			)
 
- 			if inspect.State != nil {
 
- 				switch inspect.State.Status {
 
- 				case "running":
 
- 					if inspect.State.Health != nil {
 
- 						health = inspect.State.Health.Status
 
- 					}
 
- 				case "exited", "dead":
 
- 					exitCode = inspect.State.ExitCode
 
- 				}
 
- 			}
 
- 			summary[i] = api.ContainerSummary{
 
- 				ID:         container.ID,
 
- 				Name:       getCanonicalContainerName(container),
 
- 				Project:    container.Labels[api.ProjectLabel],
 
- 				Service:    container.Labels[api.ServiceLabel],
 
- 				Command:    container.Command,
 
- 				State:      container.State,
 
- 				Health:     health,
 
- 				ExitCode:   exitCode,
 
- 				Publishers: publishers,
 
- 			}
 
- 			return nil
 
- 		})
 
- 	}
 
- 	return summary, eg.Wait()
 
- }
 
 
  |