compose.go 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. "os"
  20. "strconv"
  21. "strings"
  22. "sync"
  23. "github.com/jonboulle/clockwork"
  24. "github.com/docker/docker/api/types/volume"
  25. "github.com/compose-spec/compose-go/types"
  26. "github.com/distribution/distribution/v3/reference"
  27. "github.com/docker/cli/cli/command"
  28. "github.com/docker/cli/cli/config/configfile"
  29. "github.com/docker/cli/cli/flags"
  30. "github.com/docker/cli/cli/streams"
  31. moby "github.com/docker/docker/api/types"
  32. "github.com/docker/docker/api/types/filters"
  33. "github.com/docker/docker/api/types/swarm"
  34. "github.com/docker/docker/client"
  35. "github.com/opencontainers/go-digest"
  36. "github.com/pkg/errors"
  37. "gopkg.in/yaml.v2"
  38. "github.com/docker/compose/v2/pkg/api"
  39. )
  40. var stdioToStdout bool
  41. func init() {
  42. out, ok := os.LookupEnv("COMPOSE_STATUS_STDOUT")
  43. if ok {
  44. stdioToStdout, _ = strconv.ParseBool(out)
  45. }
  46. }
  47. // NewComposeService create a local implementation of the compose.Service API
  48. func NewComposeService(dockerCli command.Cli) api.Service {
  49. return &composeService{
  50. dockerCli: dockerCli,
  51. clock: clockwork.NewRealClock(),
  52. maxConcurrency: -1,
  53. dryRun: false,
  54. }
  55. }
  56. type composeService struct {
  57. dockerCli command.Cli
  58. clock clockwork.Clock
  59. maxConcurrency int
  60. dryRun bool
  61. }
  62. func (s *composeService) apiClient() client.APIClient {
  63. return s.dockerCli.Client()
  64. }
  65. func (s *composeService) configFile() *configfile.ConfigFile {
  66. return s.dockerCli.ConfigFile()
  67. }
  68. func (s *composeService) MaxConcurrency(i int) {
  69. s.maxConcurrency = i
  70. }
  71. func (s *composeService) DryRunMode(ctx context.Context, dryRun bool) (context.Context, error) {
  72. s.dryRun = dryRun
  73. if dryRun {
  74. cli, err := command.NewDockerCli()
  75. if err != nil {
  76. return ctx, err
  77. }
  78. options := flags.NewClientOptions()
  79. options.Context = s.dockerCli.CurrentContext()
  80. err = cli.Initialize(options, command.WithInitializeClient(func(cli *command.DockerCli) (client.APIClient, error) {
  81. return api.NewDryRunClient(s.apiClient(), s.dockerCli)
  82. }))
  83. if err != nil {
  84. return ctx, err
  85. }
  86. s.dockerCli = cli
  87. }
  88. return context.WithValue(ctx, api.DryRunKey{}, dryRun), nil
  89. }
  90. func (s *composeService) stdout() *streams.Out {
  91. return s.dockerCli.Out()
  92. }
  93. func (s *composeService) stdin() *streams.In {
  94. return s.dockerCli.In()
  95. }
  96. func (s *composeService) stderr() io.Writer {
  97. return s.dockerCli.Err()
  98. }
  99. func (s *composeService) stdinfo() io.Writer {
  100. if stdioToStdout {
  101. return s.dockerCli.Out()
  102. }
  103. return s.dockerCli.Err()
  104. }
  105. func getCanonicalContainerName(c moby.Container) string {
  106. if len(c.Names) == 0 {
  107. // corner case, sometime happens on removal. return short ID as a safeguard value
  108. return c.ID[:12]
  109. }
  110. // Names return container canonical name /foo + link aliases /linked_by/foo
  111. for _, name := range c.Names {
  112. if strings.LastIndex(name, "/") == 0 {
  113. return name[1:]
  114. }
  115. }
  116. return c.Names[0][1:]
  117. }
  118. func getContainerNameWithoutProject(c moby.Container) string {
  119. name := getCanonicalContainerName(c)
  120. project := c.Labels[api.ProjectLabel]
  121. prefix := fmt.Sprintf("%s_%s_", project, c.Labels[api.ServiceLabel])
  122. if strings.HasPrefix(name, prefix) {
  123. return name[len(project)+1:]
  124. }
  125. return name
  126. }
  127. func (s *composeService) Config(ctx context.Context, project *types.Project, options api.ConfigOptions) ([]byte, error) {
  128. if options.ResolveImageDigests {
  129. err := project.ResolveImages(func(named reference.Named) (digest.Digest, error) {
  130. auth, err := encodedAuth(named, s.configFile())
  131. if err != nil {
  132. return "", err
  133. }
  134. inspect, err := s.apiClient().DistributionInspect(ctx, named.String(), auth)
  135. if err != nil {
  136. return "", err
  137. }
  138. return inspect.Descriptor.Digest, nil
  139. })
  140. if err != nil {
  141. return nil, err
  142. }
  143. }
  144. switch options.Format {
  145. case "json":
  146. return json.MarshalIndent(project, "", " ")
  147. case "yaml":
  148. return yaml.Marshal(project)
  149. default:
  150. return nil, fmt.Errorf("unsupported format %q", options.Format)
  151. }
  152. }
  153. // projectFromName builds a types.Project based on actual resources with compose labels set
  154. func (s *composeService) projectFromName(containers Containers, projectName string, services ...string) (*types.Project, error) {
  155. project := &types.Project{
  156. Name: projectName,
  157. }
  158. if len(containers) == 0 {
  159. return project, errors.Wrap(api.ErrNotFound, fmt.Sprintf("no container found for project %q", projectName))
  160. }
  161. set := map[string]*types.ServiceConfig{}
  162. for _, c := range containers {
  163. serviceLabel := c.Labels[api.ServiceLabel]
  164. _, ok := set[serviceLabel]
  165. if !ok {
  166. set[serviceLabel] = &types.ServiceConfig{
  167. Name: serviceLabel,
  168. Image: c.Image,
  169. Labels: c.Labels,
  170. }
  171. }
  172. set[serviceLabel].Scale++
  173. }
  174. for _, service := range set {
  175. dependencies := service.Labels[api.DependenciesLabel]
  176. if len(dependencies) > 0 {
  177. service.DependsOn = types.DependsOnConfig{}
  178. for _, dc := range strings.Split(dependencies, ",") {
  179. dcArr := strings.Split(dc, ":")
  180. condition := ServiceConditionRunningOrHealthy
  181. // Let's restart the dependency by default if we don't have the info stored in the label
  182. restart := true
  183. required := true
  184. dependency := dcArr[0]
  185. // backward compatibility
  186. if len(dcArr) > 1 {
  187. condition = dcArr[1]
  188. if len(dcArr) > 2 {
  189. restart, _ = strconv.ParseBool(dcArr[2])
  190. }
  191. }
  192. service.DependsOn[dependency] = types.ServiceDependency{Condition: condition, Restart: restart, Required: required}
  193. }
  194. }
  195. project.Services = append(project.Services, *service)
  196. }
  197. SERVICES:
  198. for _, qs := range services {
  199. for _, es := range project.Services {
  200. if es.Name == qs {
  201. continue SERVICES
  202. }
  203. }
  204. return project, errors.Wrapf(api.ErrNotFound, "no such service: %q", qs)
  205. }
  206. err := project.ForServices(services)
  207. if err != nil {
  208. return project, err
  209. }
  210. return project, nil
  211. }
  212. func (s *composeService) actualVolumes(ctx context.Context, projectName string) (types.Volumes, error) {
  213. opts := volume.ListOptions{
  214. Filters: filters.NewArgs(projectFilter(projectName)),
  215. }
  216. volumes, err := s.apiClient().VolumeList(ctx, opts)
  217. if err != nil {
  218. return nil, err
  219. }
  220. actual := types.Volumes{}
  221. for _, vol := range volumes.Volumes {
  222. actual[vol.Labels[api.VolumeLabel]] = types.VolumeConfig{
  223. Name: vol.Name,
  224. Driver: vol.Driver,
  225. Labels: vol.Labels,
  226. }
  227. }
  228. return actual, nil
  229. }
  230. func (s *composeService) actualNetworks(ctx context.Context, projectName string) (types.Networks, error) {
  231. networks, err := s.apiClient().NetworkList(ctx, moby.NetworkListOptions{
  232. Filters: filters.NewArgs(projectFilter(projectName)),
  233. })
  234. if err != nil {
  235. return nil, err
  236. }
  237. actual := types.Networks{}
  238. for _, net := range networks {
  239. actual[net.Labels[api.NetworkLabel]] = types.NetworkConfig{
  240. Name: net.Name,
  241. Driver: net.Driver,
  242. Labels: net.Labels,
  243. }
  244. }
  245. return actual, nil
  246. }
  247. var swarmEnabled = struct {
  248. once sync.Once
  249. val bool
  250. err error
  251. }{}
  252. func (s *composeService) isSWarmEnabled(ctx context.Context) (bool, error) {
  253. swarmEnabled.once.Do(func() {
  254. info, err := s.apiClient().Info(ctx)
  255. if err != nil {
  256. swarmEnabled.err = err
  257. }
  258. switch info.Swarm.LocalNodeState {
  259. case swarm.LocalNodeStateInactive, swarm.LocalNodeStateLocked:
  260. swarmEnabled.val = false
  261. default:
  262. swarmEnabled.val = true
  263. }
  264. })
  265. return swarmEnabled.val, swarmEnabled.err
  266. }