compose.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package compose
  14. import (
  15. "context"
  16. "encoding/json"
  17. "fmt"
  18. "io"
  19. "strconv"
  20. "strings"
  21. "github.com/compose-spec/compose-go/types"
  22. "github.com/distribution/distribution/v3/reference"
  23. "github.com/docker/cli/cli/command"
  24. "github.com/docker/cli/cli/config/configfile"
  25. "github.com/docker/cli/cli/flags"
  26. "github.com/docker/cli/cli/streams"
  27. moby "github.com/docker/docker/api/types"
  28. "github.com/docker/docker/api/types/filters"
  29. "github.com/docker/docker/client"
  30. "github.com/opencontainers/go-digest"
  31. "github.com/pkg/errors"
  32. "gopkg.in/yaml.v2"
  33. "github.com/docker/compose/v2/pkg/api"
  34. )
  35. // NewComposeService create a local implementation of the compose.Service API
  36. func NewComposeService(dockerCli command.Cli) api.Service {
  37. return &composeService{
  38. dockerCli: dockerCli,
  39. maxConcurrency: -1,
  40. dryRun: false,
  41. }
  42. }
  43. type composeService struct {
  44. dockerCli command.Cli
  45. maxConcurrency int
  46. dryRun bool
  47. }
  48. func (s *composeService) apiClient() client.APIClient {
  49. return s.dockerCli.Client()
  50. }
  51. func (s *composeService) configFile() *configfile.ConfigFile {
  52. return s.dockerCli.ConfigFile()
  53. }
  54. func (s *composeService) MaxConcurrency(i int) {
  55. s.maxConcurrency = i
  56. }
  57. func (s *composeService) DryRunMode(ctx context.Context, dryRun bool) (context.Context, error) {
  58. s.dryRun = dryRun
  59. if dryRun {
  60. cli, err := command.NewDockerCli()
  61. if err != nil {
  62. return ctx, err
  63. }
  64. err = cli.Initialize(flags.NewClientOptions(), command.WithInitializeClient(func(cli *command.DockerCli) (client.APIClient, error) {
  65. return api.NewDryRunClient(s.apiClient(), cli)
  66. }))
  67. if err != nil {
  68. return ctx, err
  69. }
  70. s.dockerCli = cli
  71. }
  72. return context.WithValue(ctx, api.DryRunKey{}, dryRun), nil
  73. }
  74. func (s *composeService) stdout() *streams.Out {
  75. return s.dockerCli.Out()
  76. }
  77. func (s *composeService) stdin() *streams.In {
  78. return s.dockerCli.In()
  79. }
  80. func (s *composeService) stderr() io.Writer {
  81. return s.dockerCli.Err()
  82. }
  83. func getCanonicalContainerName(c moby.Container) string {
  84. if len(c.Names) == 0 {
  85. // corner case, sometime happens on removal. return short ID as a safeguard value
  86. return c.ID[:12]
  87. }
  88. // Names return container canonical name /foo + link aliases /linked_by/foo
  89. for _, name := range c.Names {
  90. if strings.LastIndex(name, "/") == 0 {
  91. return name[1:]
  92. }
  93. }
  94. return c.Names[0][1:]
  95. }
  96. func getContainerNameWithoutProject(c moby.Container) string {
  97. name := getCanonicalContainerName(c)
  98. project := c.Labels[api.ProjectLabel]
  99. prefix := fmt.Sprintf("%s_%s_", project, c.Labels[api.ServiceLabel])
  100. if strings.HasPrefix(name, prefix) {
  101. return name[len(project)+1:]
  102. }
  103. return name
  104. }
  105. func (s *composeService) Config(ctx context.Context, project *types.Project, options api.ConfigOptions) ([]byte, error) {
  106. if options.ResolveImageDigests {
  107. err := project.ResolveImages(func(named reference.Named) (digest.Digest, error) {
  108. auth, err := encodedAuth(named, s.configFile())
  109. if err != nil {
  110. return "", err
  111. }
  112. inspect, err := s.apiClient().DistributionInspect(ctx, named.String(), auth)
  113. if err != nil {
  114. return "", err
  115. }
  116. return inspect.Descriptor.Digest, nil
  117. })
  118. if err != nil {
  119. return nil, err
  120. }
  121. }
  122. switch options.Format {
  123. case "json":
  124. return json.MarshalIndent(project, "", " ")
  125. case "yaml":
  126. return yaml.Marshal(project)
  127. default:
  128. return nil, fmt.Errorf("unsupported format %q", options.Format)
  129. }
  130. }
  131. // projectFromName builds a types.Project based on actual resources with compose labels set
  132. func (s *composeService) projectFromName(containers Containers, projectName string, services ...string) (*types.Project, error) {
  133. project := &types.Project{
  134. Name: projectName,
  135. }
  136. if len(containers) == 0 {
  137. return project, errors.Wrap(api.ErrNotFound, fmt.Sprintf("no container found for project %q", projectName))
  138. }
  139. set := map[string]*types.ServiceConfig{}
  140. for _, c := range containers {
  141. serviceLabel := c.Labels[api.ServiceLabel]
  142. _, ok := set[serviceLabel]
  143. if !ok {
  144. set[serviceLabel] = &types.ServiceConfig{
  145. Name: serviceLabel,
  146. Image: c.Image,
  147. Labels: c.Labels,
  148. }
  149. }
  150. set[serviceLabel].Scale++
  151. }
  152. for _, service := range set {
  153. dependencies := service.Labels[api.DependenciesLabel]
  154. if len(dependencies) > 0 {
  155. service.DependsOn = types.DependsOnConfig{}
  156. for _, dc := range strings.Split(dependencies, ",") {
  157. dcArr := strings.Split(dc, ":")
  158. condition := ServiceConditionRunningOrHealthy
  159. // Let's restart the dependency by default if we don't have the info stored in the label
  160. restart := true
  161. dependency := dcArr[0]
  162. // backward compatibility
  163. if len(dcArr) > 1 {
  164. condition = dcArr[1]
  165. if len(dcArr) > 2 {
  166. restart, _ = strconv.ParseBool(dcArr[2])
  167. }
  168. }
  169. service.DependsOn[dependency] = types.ServiceDependency{Condition: condition, Restart: restart}
  170. }
  171. }
  172. project.Services = append(project.Services, *service)
  173. }
  174. SERVICES:
  175. for _, qs := range services {
  176. for _, es := range project.Services {
  177. if es.Name == qs {
  178. continue SERVICES
  179. }
  180. }
  181. return project, errors.Wrapf(api.ErrNotFound, "no such service: %q", qs)
  182. }
  183. err := project.ForServices(services)
  184. if err != nil {
  185. return project, err
  186. }
  187. return project, nil
  188. }
  189. func (s *composeService) actualVolumes(ctx context.Context, projectName string) (types.Volumes, error) {
  190. volumes, err := s.apiClient().VolumeList(ctx, filters.NewArgs(projectFilter(projectName)))
  191. if err != nil {
  192. return nil, err
  193. }
  194. actual := types.Volumes{}
  195. for _, vol := range volumes.Volumes {
  196. actual[vol.Labels[api.VolumeLabel]] = types.VolumeConfig{
  197. Name: vol.Name,
  198. Driver: vol.Driver,
  199. Labels: vol.Labels,
  200. }
  201. }
  202. return actual, nil
  203. }
  204. func (s *composeService) actualNetworks(ctx context.Context, projectName string) (types.Networks, error) {
  205. networks, err := s.apiClient().NetworkList(ctx, moby.NetworkListOptions{
  206. Filters: filters.NewArgs(projectFilter(projectName)),
  207. })
  208. if err != nil {
  209. return nil, err
  210. }
  211. actual := types.Networks{}
  212. for _, net := range networks {
  213. actual[net.Labels[api.NetworkLabel]] = types.NetworkConfig{
  214. Name: net.Name,
  215. Driver: net.Driver,
  216. Labels: net.Labels,
  217. }
  218. }
  219. return actual, nil
  220. }