up.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. "fmt"
  17. "os"
  18. "strconv"
  19. "strings"
  20. "github.com/docker/compose/v2/cmd/formatter"
  21. "github.com/compose-spec/compose-go/types"
  22. "github.com/spf13/cobra"
  23. "github.com/docker/compose/v2/pkg/api"
  24. "github.com/docker/compose/v2/pkg/utils"
  25. )
  26. // composeOptions hold options common to `up` and `run` to run compose project
  27. type composeOptions struct {
  28. *projectOptions
  29. }
  30. type upOptions struct {
  31. *composeOptions
  32. Detach bool
  33. noStart bool
  34. noDeps bool
  35. cascadeStop bool
  36. exitCodeFrom string
  37. scale []string
  38. noColor bool
  39. noPrefix bool
  40. attachDependencies bool
  41. attach []string
  42. wait bool
  43. }
  44. func (opts upOptions) apply(project *types.Project, services []string) error {
  45. if opts.noDeps {
  46. enabled, err := project.GetServices(services...)
  47. if err != nil {
  48. return err
  49. }
  50. for _, s := range project.Services {
  51. if !utils.StringContains(services, s.Name) {
  52. project.DisabledServices = append(project.DisabledServices, s)
  53. }
  54. }
  55. project.Services = enabled
  56. }
  57. if opts.exitCodeFrom != "" {
  58. _, err := project.GetService(opts.exitCodeFrom)
  59. if err != nil {
  60. return err
  61. }
  62. }
  63. for _, scale := range opts.scale {
  64. split := strings.Split(scale, "=")
  65. if len(split) != 2 {
  66. return fmt.Errorf("invalid --scale option %q. Should be SERVICE=NUM", scale)
  67. }
  68. name := split[0]
  69. replicas, err := strconv.Atoi(split[1])
  70. if err != nil {
  71. return err
  72. }
  73. err = setServiceScale(project, name, uint64(replicas))
  74. if err != nil {
  75. return err
  76. }
  77. }
  78. return nil
  79. }
  80. func upCommand(p *projectOptions, backend api.Service) *cobra.Command {
  81. up := upOptions{}
  82. create := createOptions{}
  83. upCmd := &cobra.Command{
  84. Use: "up [SERVICE...]",
  85. Short: "Create and start containers",
  86. PreRunE: AdaptCmd(func(ctx context.Context, cmd *cobra.Command, args []string) error {
  87. create.timeChanged = cmd.Flags().Changed("timeout")
  88. return validateFlags(&up, &create)
  89. }),
  90. RunE: p.WithServices(func(ctx context.Context, project *types.Project, services []string) error {
  91. ignore := project.Environment["COMPOSE_IGNORE_ORPHANS"]
  92. create.ignoreOrphans = strings.ToLower(ignore) == "true"
  93. if create.ignoreOrphans && create.removeOrphans {
  94. return fmt.Errorf("COMPOSE_IGNORE_ORPHANS and --remove-orphans cannot be combined")
  95. }
  96. return runUp(ctx, backend, create, up, project, services)
  97. }),
  98. ValidArgsFunction: serviceCompletion(p),
  99. }
  100. flags := upCmd.Flags()
  101. flags.BoolVarP(&up.Detach, "detach", "d", false, "Detached mode: Run containers in the background")
  102. flags.BoolVar(&create.Build, "build", false, "Build images before starting containers.")
  103. flags.BoolVar(&create.noBuild, "no-build", false, "Don't build an image, even if it's missing.")
  104. flags.BoolVar(&create.removeOrphans, "remove-orphans", false, "Remove containers for services not defined in the Compose file.")
  105. flags.StringArrayVar(&up.scale, "scale", []string{}, "Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present.")
  106. flags.BoolVar(&up.noColor, "no-color", false, "Produce monochrome output.")
  107. flags.BoolVar(&up.noPrefix, "no-log-prefix", false, "Don't print prefix in logs.")
  108. flags.BoolVar(&create.forceRecreate, "force-recreate", false, "Recreate containers even if their configuration and image haven't changed.")
  109. flags.BoolVar(&create.noRecreate, "no-recreate", false, "If containers already exist, don't recreate them. Incompatible with --force-recreate.")
  110. flags.BoolVar(&up.noStart, "no-start", false, "Don't start the services after creating them.")
  111. flags.BoolVar(&up.cascadeStop, "abort-on-container-exit", false, "Stops all containers if any container was stopped. Incompatible with -d")
  112. flags.StringVar(&up.exitCodeFrom, "exit-code-from", "", "Return the exit code of the selected service container. Implies --abort-on-container-exit")
  113. flags.IntVarP(&create.timeout, "timeout", "t", 10, "Use this timeout in seconds for container shutdown when attached or when containers are already running.")
  114. flags.BoolVar(&up.noDeps, "no-deps", false, "Don't start linked services.")
  115. flags.BoolVar(&create.recreateDeps, "always-recreate-deps", false, "Recreate dependent containers. Incompatible with --no-recreate.")
  116. flags.BoolVarP(&create.noInherit, "renew-anon-volumes", "V", false, "Recreate anonymous volumes instead of retrieving data from the previous containers.")
  117. flags.BoolVar(&up.attachDependencies, "attach-dependencies", false, "Attach to dependent containers.")
  118. flags.BoolVar(&create.quietPull, "quiet-pull", false, "Pull without printing progress information.")
  119. flags.StringArrayVar(&up.attach, "attach", []string{}, "Attach to service output.")
  120. flags.BoolVar(&up.wait, "wait", false, "Wait for services to be running|healthy. Implies detached mode.")
  121. return upCmd
  122. }
  123. func validateFlags(up *upOptions, create *createOptions) error {
  124. if up.exitCodeFrom != "" {
  125. up.cascadeStop = true
  126. }
  127. if up.wait {
  128. if up.attachDependencies || up.cascadeStop || len(up.attach) > 0 {
  129. return fmt.Errorf("--wait cannot be combined with --abort-on-container-exit, --attach or --attach-dependencies")
  130. }
  131. up.Detach = true
  132. }
  133. if create.Build && create.noBuild {
  134. return fmt.Errorf("--build and --no-build are incompatible")
  135. }
  136. if up.Detach && (up.attachDependencies || up.cascadeStop || len(up.attach) > 0) {
  137. return fmt.Errorf("--detach cannot be combined with --abort-on-container-exit, --attach or --attach-dependencies")
  138. }
  139. if create.forceRecreate && create.noRecreate {
  140. return fmt.Errorf("--force-recreate and --no-recreate are incompatible")
  141. }
  142. if create.recreateDeps && create.noRecreate {
  143. return fmt.Errorf("--always-recreate-deps and --no-recreate are incompatible")
  144. }
  145. return nil
  146. }
  147. func runUp(ctx context.Context, backend api.Service, createOptions createOptions, upOptions upOptions, project *types.Project, services []string) error {
  148. if len(project.Services) == 0 {
  149. return fmt.Errorf("no service selected")
  150. }
  151. createOptions.Apply(project)
  152. err := upOptions.apply(project, services)
  153. if err != nil {
  154. return err
  155. }
  156. var consumer api.LogConsumer
  157. if !upOptions.Detach {
  158. consumer = formatter.NewLogConsumer(ctx, os.Stdout, !upOptions.noColor, !upOptions.noPrefix)
  159. }
  160. attachTo := services
  161. if len(upOptions.attach) > 0 {
  162. attachTo = upOptions.attach
  163. }
  164. if upOptions.attachDependencies {
  165. attachTo = project.ServiceNames()
  166. }
  167. create := api.CreateOptions{
  168. Services: services,
  169. RemoveOrphans: createOptions.removeOrphans,
  170. IgnoreOrphans: createOptions.ignoreOrphans,
  171. Recreate: createOptions.recreateStrategy(),
  172. RecreateDependencies: createOptions.dependenciesRecreateStrategy(),
  173. Inherit: !createOptions.noInherit,
  174. Timeout: createOptions.GetTimeout(),
  175. QuietPull: createOptions.quietPull,
  176. }
  177. if upOptions.noStart {
  178. return backend.Create(ctx, project, create)
  179. }
  180. return backend.Up(ctx, project, api.UpOptions{
  181. Create: create,
  182. Start: api.StartOptions{
  183. Attach: consumer,
  184. AttachTo: attachTo,
  185. ExitCodeFrom: upOptions.exitCodeFrom,
  186. CascadeStop: upOptions.cascadeStop,
  187. Wait: upOptions.wait,
  188. },
  189. })
  190. }
  191. func setServiceScale(project *types.Project, name string, replicas uint64) error {
  192. for i, s := range project.Services {
  193. if s.Name == name {
  194. service, err := project.GetService(name)
  195. if err != nil {
  196. return err
  197. }
  198. if service.Deploy == nil {
  199. service.Deploy = &types.DeployConfig{}
  200. }
  201. service.Deploy.Replicas = &replicas
  202. project.Services[i] = service
  203. return nil
  204. }
  205. }
  206. return fmt.Errorf("unknown service %q", name)
  207. }