compose.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. info, err := s.apiClient().Info(ctx)
  108. if err != nil {
  109. return nil, err
  110. }
  111. err = project.ResolveImages(func(named reference.Named) (digest.Digest, error) {
  112. auth, err := encodedAuth(named, info, s.configFile())
  113. if err != nil {
  114. return "", err
  115. }
  116. inspect, err := s.apiClient().DistributionInspect(ctx, named.String(), auth)
  117. if err != nil {
  118. return "", err
  119. }
  120. return inspect.Descriptor.Digest, nil
  121. })
  122. if err != nil {
  123. return nil, err
  124. }
  125. }
  126. switch options.Format {
  127. case "json":
  128. return json.MarshalIndent(project, "", " ")
  129. case "yaml":
  130. return yaml.Marshal(project)
  131. default:
  132. return nil, fmt.Errorf("unsupported format %q", options.Format)
  133. }
  134. }
  135. // projectFromName builds a types.Project based on actual resources with compose labels set
  136. func (s *composeService) projectFromName(containers Containers, projectName string, services ...string) (*types.Project, error) {
  137. project := &types.Project{
  138. Name: projectName,
  139. }
  140. if len(containers) == 0 {
  141. return project, errors.Wrap(api.ErrNotFound, fmt.Sprintf("no container found for project %q", projectName))
  142. }
  143. set := map[string]*types.ServiceConfig{}
  144. for _, c := range containers {
  145. serviceLabel := c.Labels[api.ServiceLabel]
  146. _, ok := set[serviceLabel]
  147. if !ok {
  148. set[serviceLabel] = &types.ServiceConfig{
  149. Name: serviceLabel,
  150. Image: c.Image,
  151. Labels: c.Labels,
  152. }
  153. }
  154. set[serviceLabel].Scale++
  155. }
  156. for _, service := range set {
  157. dependencies := service.Labels[api.DependenciesLabel]
  158. if len(dependencies) > 0 {
  159. service.DependsOn = types.DependsOnConfig{}
  160. for _, dc := range strings.Split(dependencies, ",") {
  161. dcArr := strings.Split(dc, ":")
  162. condition := ServiceConditionRunningOrHealthy
  163. // Let's restart the dependency by default if we don't have the info stored in the label
  164. restart := true
  165. dependency := dcArr[0]
  166. // backward compatibility
  167. if len(dcArr) > 1 {
  168. condition = dcArr[1]
  169. if len(dcArr) > 2 {
  170. restart, _ = strconv.ParseBool(dcArr[2])
  171. }
  172. }
  173. service.DependsOn[dependency] = types.ServiceDependency{Condition: condition, Restart: restart}
  174. }
  175. }
  176. project.Services = append(project.Services, *service)
  177. }
  178. SERVICES:
  179. for _, qs := range services {
  180. for _, es := range project.Services {
  181. if es.Name == qs {
  182. continue SERVICES
  183. }
  184. }
  185. return project, errors.Wrapf(api.ErrNotFound, "no such service: %q", qs)
  186. }
  187. err := project.ForServices(services)
  188. if err != nil {
  189. return project, err
  190. }
  191. return project, nil
  192. }
  193. func (s *composeService) actualVolumes(ctx context.Context, projectName string) (types.Volumes, error) {
  194. volumes, err := s.apiClient().VolumeList(ctx, filters.NewArgs(projectFilter(projectName)))
  195. if err != nil {
  196. return nil, err
  197. }
  198. actual := types.Volumes{}
  199. for _, vol := range volumes.Volumes {
  200. actual[vol.Labels[api.VolumeLabel]] = types.VolumeConfig{
  201. Name: vol.Name,
  202. Driver: vol.Driver,
  203. Labels: vol.Labels,
  204. }
  205. }
  206. return actual, nil
  207. }
  208. func (s *composeService) actualNetworks(ctx context.Context, projectName string) (types.Networks, error) {
  209. networks, err := s.apiClient().NetworkList(ctx, moby.NetworkListOptions{
  210. Filters: filters.NewArgs(projectFilter(projectName)),
  211. })
  212. if err != nil {
  213. return nil, err
  214. }
  215. actual := types.Networks{}
  216. for _, net := range networks {
  217. actual[net.Labels[api.NetworkLabel]] = types.NetworkConfig{
  218. Name: net.Name,
  219. Driver: net.Driver,
  220. Labels: net.Labels,
  221. }
  222. }
  223. return actual, nil
  224. }