compose.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  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. "os/signal"
  19. "path/filepath"
  20. "strconv"
  21. "strings"
  22. "syscall"
  23. "github.com/compose-spec/compose-go/cli"
  24. "github.com/compose-spec/compose-go/dotenv"
  25. "github.com/compose-spec/compose-go/types"
  26. composegoutils "github.com/compose-spec/compose-go/utils"
  27. "github.com/docker/buildx/util/logutil"
  28. buildx "github.com/docker/buildx/util/progress"
  29. dockercli "github.com/docker/cli/cli"
  30. "github.com/docker/cli/cli-plugins/manager"
  31. "github.com/docker/cli/cli/command"
  32. "github.com/docker/compose/v2/pkg/remote"
  33. "github.com/morikuni/aec"
  34. "github.com/pkg/errors"
  35. "github.com/sirupsen/logrus"
  36. "github.com/spf13/cobra"
  37. "github.com/spf13/pflag"
  38. "github.com/docker/compose/v2/cmd/formatter"
  39. "github.com/docker/compose/v2/pkg/api"
  40. "github.com/docker/compose/v2/pkg/compose"
  41. ui "github.com/docker/compose/v2/pkg/progress"
  42. "github.com/docker/compose/v2/pkg/utils"
  43. )
  44. const (
  45. // ComposeParallelLimit set the limit running concurrent operation on docker engine
  46. ComposeParallelLimit = "COMPOSE_PARALLEL_LIMIT"
  47. // ComposeProjectName define the project name to be used, instead of guessing from parent directory
  48. ComposeProjectName = "COMPOSE_PROJECT_NAME"
  49. // ComposeCompatibility try to mimic compose v1 as much as possible
  50. ComposeCompatibility = "COMPOSE_COMPATIBILITY"
  51. // ComposeRemoveOrphans remove “orphaned" containers, i.e. containers tagged for current project but not declared as service
  52. ComposeRemoveOrphans = "COMPOSE_REMOVE_ORPHANS"
  53. // ComposeIgnoreOrphans ignore "orphaned" containers
  54. ComposeIgnoreOrphans = "COMPOSE_IGNORE_ORPHANS"
  55. )
  56. // Command defines a compose CLI command as a func with args
  57. type Command func(context.Context, []string) error
  58. // CobraCommand defines a cobra command function
  59. type CobraCommand func(context.Context, *cobra.Command, []string) error
  60. // AdaptCmd adapt a CobraCommand func to cobra library
  61. func AdaptCmd(fn CobraCommand) func(cmd *cobra.Command, args []string) error {
  62. return func(cmd *cobra.Command, args []string) error {
  63. ctx := cmd.Context()
  64. contextString := fmt.Sprintf("%s", ctx)
  65. if !strings.HasSuffix(contextString, ".WithCancel") { // need to handle cancel
  66. cancellableCtx, cancel := context.WithCancel(cmd.Context())
  67. ctx = cancellableCtx
  68. s := make(chan os.Signal, 1)
  69. signal.Notify(s, syscall.SIGTERM, syscall.SIGINT)
  70. go func() {
  71. <-s
  72. cancel()
  73. }()
  74. }
  75. err := fn(ctx, cmd, args)
  76. var composeErr compose.Error
  77. if api.IsErrCanceled(err) || errors.Is(ctx.Err(), context.Canceled) {
  78. err = dockercli.StatusError{
  79. StatusCode: 130,
  80. Status: compose.CanceledStatus,
  81. }
  82. }
  83. if errors.As(err, &composeErr) {
  84. err = dockercli.StatusError{
  85. StatusCode: composeErr.GetMetricsFailureCategory().ExitCode,
  86. Status: err.Error(),
  87. }
  88. }
  89. return err
  90. }
  91. }
  92. // Adapt a Command func to cobra library
  93. func Adapt(fn Command) func(cmd *cobra.Command, args []string) error {
  94. return AdaptCmd(func(ctx context.Context, cmd *cobra.Command, args []string) error {
  95. return fn(ctx, args)
  96. })
  97. }
  98. type ProjectOptions struct {
  99. ProjectName string
  100. Profiles []string
  101. ConfigPaths []string
  102. WorkDir string
  103. ProjectDir string
  104. EnvFiles []string
  105. Compatibility bool
  106. Progress string
  107. Offline bool
  108. }
  109. // ProjectFunc does stuff within a types.Project
  110. type ProjectFunc func(ctx context.Context, project *types.Project) error
  111. // ProjectServicesFunc does stuff within a types.Project and a selection of services
  112. type ProjectServicesFunc func(ctx context.Context, project *types.Project, services []string) error
  113. // WithProject creates a cobra run command from a ProjectFunc based on configured project options and selected services
  114. func (o *ProjectOptions) WithProject(fn ProjectFunc, dockerCli command.Cli) func(cmd *cobra.Command, args []string) error {
  115. return o.WithServices(dockerCli, func(ctx context.Context, project *types.Project, services []string) error {
  116. return fn(ctx, project)
  117. })
  118. }
  119. // WithServices creates a cobra run command from a ProjectFunc based on configured project options and selected services
  120. func (o *ProjectOptions) WithServices(dockerCli command.Cli, fn ProjectServicesFunc) func(cmd *cobra.Command, args []string) error {
  121. return Adapt(func(ctx context.Context, args []string) error {
  122. options := []cli.ProjectOptionsFn{
  123. cli.WithResolvedPaths(true),
  124. cli.WithDiscardEnvFile,
  125. cli.WithContext(ctx),
  126. }
  127. project, err := o.ToProject(dockerCli, args, options...)
  128. if err != nil {
  129. return err
  130. }
  131. return fn(ctx, project, args)
  132. })
  133. }
  134. func (o *ProjectOptions) addProjectFlags(f *pflag.FlagSet) {
  135. f.StringArrayVar(&o.Profiles, "profile", []string{}, "Specify a profile to enable")
  136. f.StringVarP(&o.ProjectName, "project-name", "p", "", "Project name")
  137. f.StringArrayVarP(&o.ConfigPaths, "file", "f", []string{}, "Compose configuration files")
  138. f.StringArrayVar(&o.EnvFiles, "env-file", nil, "Specify an alternate environment file.")
  139. f.StringVar(&o.ProjectDir, "project-directory", "", "Specify an alternate working directory\n(default: the path of the, first specified, Compose file)")
  140. f.StringVar(&o.WorkDir, "workdir", "", "DEPRECATED! USE --project-directory INSTEAD.\nSpecify an alternate working directory\n(default: the path of the, first specified, Compose file)")
  141. f.BoolVar(&o.Compatibility, "compatibility", false, "Run compose in backward compatibility mode")
  142. f.StringVar(&o.Progress, "progress", buildx.PrinterModeAuto, fmt.Sprintf(`Set type of progress output (%s)`, strings.Join(printerModes, ", ")))
  143. _ = f.MarkHidden("workdir")
  144. }
  145. func (o *ProjectOptions) projectOrName(dockerCli command.Cli, services ...string) (*types.Project, string, error) {
  146. name := o.ProjectName
  147. var project *types.Project
  148. if len(o.ConfigPaths) > 0 || o.ProjectName == "" {
  149. p, err := o.ToProject(dockerCli, services, cli.WithDiscardEnvFile)
  150. if err != nil {
  151. envProjectName := os.Getenv(ComposeProjectName)
  152. if envProjectName != "" {
  153. return nil, envProjectName, nil
  154. }
  155. return nil, "", err
  156. }
  157. project = p
  158. name = p.Name
  159. }
  160. return project, name, nil
  161. }
  162. func (o *ProjectOptions) toProjectName(dockerCli command.Cli) (string, error) {
  163. if o.ProjectName != "" {
  164. return o.ProjectName, nil
  165. }
  166. envProjectName := os.Getenv(ComposeProjectName)
  167. if envProjectName != "" {
  168. return envProjectName, nil
  169. }
  170. project, err := o.ToProject(dockerCli, nil)
  171. if err != nil {
  172. return "", err
  173. }
  174. return project.Name, nil
  175. }
  176. func (o *ProjectOptions) ToProject(dockerCli command.Cli, services []string, po ...cli.ProjectOptionsFn) (*types.Project, error) {
  177. if !o.Offline {
  178. var err error
  179. po, err = o.configureRemoteLoaders(dockerCli, po)
  180. if err != nil {
  181. return nil, err
  182. }
  183. }
  184. options, err := o.toProjectOptions(po...)
  185. if err != nil {
  186. return nil, compose.WrapComposeError(err)
  187. }
  188. if o.Compatibility || utils.StringToBool(options.Environment[ComposeCompatibility]) {
  189. api.Separator = "_"
  190. }
  191. project, err := cli.ProjectFromOptions(options)
  192. if err != nil {
  193. return nil, compose.WrapComposeError(err)
  194. }
  195. if project.Name == "" {
  196. return nil, errors.New("project name can't be empty. Use `--project-name` to set a valid name")
  197. }
  198. err = project.EnableServices(services...)
  199. if err != nil {
  200. return nil, err
  201. }
  202. for i, s := range project.Services {
  203. s.CustomLabels = map[string]string{
  204. api.ProjectLabel: project.Name,
  205. api.ServiceLabel: s.Name,
  206. api.VersionLabel: api.ComposeVersion,
  207. api.WorkingDirLabel: project.WorkingDir,
  208. api.ConfigFilesLabel: strings.Join(project.ComposeFiles, ","),
  209. api.OneoffLabel: "False", // default, will be overridden by `run` command
  210. }
  211. if len(o.EnvFiles) != 0 {
  212. s.CustomLabels[api.EnvironmentFileLabel] = strings.Join(o.EnvFiles, ",")
  213. }
  214. project.Services[i] = s
  215. }
  216. project.WithoutUnnecessaryResources()
  217. err = project.ForServices(services)
  218. return project, err
  219. }
  220. func (o *ProjectOptions) configureRemoteLoaders(dockerCli command.Cli, po []cli.ProjectOptionsFn) ([]cli.ProjectOptionsFn, error) {
  221. enabled, err := remote.GitRemoteLoaderEnabled()
  222. if err != nil {
  223. return nil, err
  224. }
  225. if enabled {
  226. git, err := remote.NewGitRemoteLoader(o.Offline)
  227. if err != nil {
  228. return nil, err
  229. }
  230. po = append(po, cli.WithResourceLoader(git))
  231. }
  232. enabled, err = remote.OCIRemoteLoaderEnabled()
  233. if err != nil {
  234. return nil, err
  235. }
  236. if enabled {
  237. git, err := remote.NewOCIRemoteLoader(dockerCli, o.Offline)
  238. if err != nil {
  239. return nil, err
  240. }
  241. po = append(po, cli.WithResourceLoader(git))
  242. }
  243. return po, nil
  244. }
  245. func (o *ProjectOptions) toProjectOptions(po ...cli.ProjectOptionsFn) (*cli.ProjectOptions, error) {
  246. return cli.NewProjectOptions(o.ConfigPaths,
  247. append(po,
  248. cli.WithWorkingDirectory(o.ProjectDir),
  249. cli.WithOsEnv,
  250. cli.WithEnvFiles(o.EnvFiles...),
  251. cli.WithDotEnv,
  252. cli.WithConfigFileEnv,
  253. cli.WithDefaultConfigPath,
  254. cli.WithDefaultProfiles(o.Profiles...),
  255. cli.WithName(o.ProjectName))...)
  256. }
  257. // PluginName is the name of the plugin
  258. const PluginName = "compose"
  259. // RunningAsStandalone detects when running as a standalone program
  260. func RunningAsStandalone() bool {
  261. return len(os.Args) < 2 || os.Args[1] != manager.MetadataSubcommandName && os.Args[1] != PluginName
  262. }
  263. // RootCommand returns the compose command with its child commands
  264. func RootCommand(dockerCli command.Cli, backend api.Service) *cobra.Command { //nolint:gocyclo
  265. // filter out useless commandConn.CloseWrite warning message that can occur
  266. // when using a remote context that is unreachable: "commandConn.CloseWrite: commandconn: failed to wait: signal: killed"
  267. // https://github.com/docker/cli/blob/e1f24d3c93df6752d3c27c8d61d18260f141310c/cli/connhelper/commandconn/commandconn.go#L203-L215
  268. logrus.AddHook(logutil.NewFilter([]logrus.Level{
  269. logrus.WarnLevel,
  270. },
  271. "commandConn.CloseWrite:",
  272. "commandConn.CloseRead:",
  273. ))
  274. opts := ProjectOptions{}
  275. var (
  276. ansi string
  277. noAnsi bool
  278. verbose bool
  279. version bool
  280. parallel int
  281. dryRun bool
  282. )
  283. c := &cobra.Command{
  284. Short: "Docker Compose",
  285. Long: "Define and run multi-container applications with Docker.",
  286. Use: PluginName,
  287. TraverseChildren: true,
  288. // By default (no Run/RunE in parent c) for typos in subcommands, cobra displays the help of parent c but exit(0) !
  289. RunE: func(cmd *cobra.Command, args []string) error {
  290. if len(args) == 0 {
  291. return cmd.Help()
  292. }
  293. if version {
  294. return versionCommand(dockerCli).Execute()
  295. }
  296. _ = cmd.Help()
  297. return dockercli.StatusError{
  298. StatusCode: compose.CommandSyntaxFailure.ExitCode,
  299. Status: fmt.Sprintf("unknown docker command: %q", "compose "+args[0]),
  300. }
  301. },
  302. PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
  303. err := setEnvWithDotEnv(&opts)
  304. if err != nil {
  305. return err
  306. }
  307. parent := cmd.Root()
  308. if parent != nil {
  309. parentPrerun := parent.PersistentPreRunE
  310. if parentPrerun != nil {
  311. err := parentPrerun(cmd, args)
  312. if err != nil {
  313. return err
  314. }
  315. }
  316. }
  317. if noAnsi {
  318. if ansi != "auto" {
  319. return errors.New(`cannot specify DEPRECATED "--no-ansi" and "--ansi". Please use only "--ansi"`)
  320. }
  321. ansi = "never"
  322. fmt.Fprint(os.Stderr, "option '--no-ansi' is DEPRECATED ! Please use '--ansi' instead.\n")
  323. }
  324. if verbose {
  325. logrus.SetLevel(logrus.TraceLevel)
  326. }
  327. if v, ok := os.LookupEnv("COMPOSE_ANSI"); ok && !cmd.Flags().Changed("ansi") {
  328. ansi = v
  329. }
  330. formatter.SetANSIMode(dockerCli, ansi)
  331. if noColor, ok := os.LookupEnv("NO_COLOR"); ok && noColor != "" {
  332. ui.NoColor()
  333. formatter.SetANSIMode(dockerCli, formatter.Never)
  334. }
  335. switch ansi {
  336. case "never":
  337. ui.Mode = ui.ModePlain
  338. case "always":
  339. ui.Mode = ui.ModeTTY
  340. }
  341. switch opts.Progress {
  342. case ui.ModeAuto:
  343. ui.Mode = ui.ModeAuto
  344. case ui.ModeTTY:
  345. if ansi == "never" {
  346. return fmt.Errorf("can't use --progress tty while ANSI support is disabled")
  347. }
  348. ui.Mode = ui.ModeTTY
  349. case ui.ModePlain:
  350. if ansi == "always" {
  351. return fmt.Errorf("can't use --progress plain while ANSI support is forced")
  352. }
  353. ui.Mode = ui.ModePlain
  354. case ui.ModeQuiet, "none":
  355. ui.Mode = ui.ModeQuiet
  356. default:
  357. return fmt.Errorf("unsupported --progress value %q", opts.Progress)
  358. }
  359. if opts.WorkDir != "" {
  360. if opts.ProjectDir != "" {
  361. return errors.New(`cannot specify DEPRECATED "--workdir" and "--project-directory". Please use only "--project-directory" instead`)
  362. }
  363. opts.ProjectDir = opts.WorkDir
  364. fmt.Fprint(os.Stderr, aec.Apply("option '--workdir' is DEPRECATED at root level! Please use '--project-directory' instead.\n", aec.RedF))
  365. }
  366. for i, file := range opts.EnvFiles {
  367. if !filepath.IsAbs(file) {
  368. file, err = filepath.Abs(file)
  369. if err != nil {
  370. return err
  371. }
  372. opts.EnvFiles[i] = file
  373. }
  374. }
  375. composeCmd := cmd
  376. for {
  377. if composeCmd.Name() == PluginName {
  378. break
  379. }
  380. if !composeCmd.HasParent() {
  381. return fmt.Errorf("error parsing command line, expected %q", PluginName)
  382. }
  383. composeCmd = composeCmd.Parent()
  384. }
  385. if v, ok := os.LookupEnv(ComposeParallelLimit); ok && !composeCmd.Flags().Changed("parallel") {
  386. i, err := strconv.Atoi(v)
  387. if err != nil {
  388. return fmt.Errorf("%s must be an integer (found: %q)", ComposeParallelLimit, v)
  389. }
  390. parallel = i
  391. }
  392. if parallel > 0 {
  393. backend.MaxConcurrency(parallel)
  394. }
  395. ctx, err := backend.DryRunMode(cmd.Context(), dryRun)
  396. if err != nil {
  397. return err
  398. }
  399. cmd.SetContext(ctx)
  400. return nil
  401. },
  402. }
  403. c.AddCommand(
  404. upCommand(&opts, dockerCli, backend),
  405. downCommand(&opts, dockerCli, backend),
  406. startCommand(&opts, dockerCli, backend),
  407. restartCommand(&opts, dockerCli, backend),
  408. stopCommand(&opts, dockerCli, backend),
  409. psCommand(&opts, dockerCli, backend),
  410. listCommand(dockerCli, backend),
  411. logsCommand(&opts, dockerCli, backend),
  412. configCommand(&opts, dockerCli, backend),
  413. killCommand(&opts, dockerCli, backend),
  414. runCommand(&opts, dockerCli, backend),
  415. removeCommand(&opts, dockerCli, backend),
  416. execCommand(&opts, dockerCli, backend),
  417. pauseCommand(&opts, dockerCli, backend),
  418. unpauseCommand(&opts, dockerCli, backend),
  419. topCommand(&opts, dockerCli, backend),
  420. eventsCommand(&opts, dockerCli, backend),
  421. portCommand(&opts, dockerCli, backend),
  422. imagesCommand(&opts, dockerCli, backend),
  423. versionCommand(dockerCli),
  424. buildCommand(&opts, dockerCli, backend),
  425. pushCommand(&opts, dockerCli, backend),
  426. pullCommand(&opts, dockerCli, backend),
  427. createCommand(&opts, dockerCli, backend),
  428. copyCommand(&opts, dockerCli, backend),
  429. waitCommand(&opts, dockerCli, backend),
  430. scaleCommand(&opts, dockerCli, backend),
  431. alphaCommand(&opts, dockerCli, backend),
  432. )
  433. c.Flags().SetInterspersed(false)
  434. opts.addProjectFlags(c.Flags())
  435. c.RegisterFlagCompletionFunc( //nolint:errcheck
  436. "project-name",
  437. completeProjectNames(backend),
  438. )
  439. c.RegisterFlagCompletionFunc( //nolint:errcheck
  440. "project-directory",
  441. func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
  442. return []string{}, cobra.ShellCompDirectiveFilterDirs
  443. },
  444. )
  445. c.RegisterFlagCompletionFunc( //nolint:errcheck
  446. "file",
  447. func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
  448. return []string{"yaml", "yml"}, cobra.ShellCompDirectiveFilterFileExt
  449. },
  450. )
  451. c.RegisterFlagCompletionFunc( //nolint:errcheck
  452. "profile",
  453. completeProfileNames(dockerCli, &opts),
  454. )
  455. c.Flags().StringVar(&ansi, "ansi", "auto", `Control when to print ANSI control characters ("never"|"always"|"auto")`)
  456. c.Flags().IntVar(&parallel, "parallel", -1, `Control max parallelism, -1 for unlimited`)
  457. c.Flags().BoolVarP(&version, "version", "v", false, "Show the Docker Compose version information")
  458. c.PersistentFlags().BoolVar(&dryRun, "dry-run", false, "Execute command in dry run mode")
  459. c.Flags().MarkHidden("version") //nolint:errcheck
  460. c.Flags().BoolVar(&noAnsi, "no-ansi", false, `Do not print ANSI control characters (DEPRECATED)`)
  461. c.Flags().MarkHidden("no-ansi") //nolint:errcheck
  462. c.Flags().BoolVar(&verbose, "verbose", false, "Show more output")
  463. c.Flags().MarkHidden("verbose") //nolint:errcheck
  464. return c
  465. }
  466. func setEnvWithDotEnv(prjOpts *ProjectOptions) error {
  467. options, err := prjOpts.toProjectOptions()
  468. if err != nil {
  469. return compose.WrapComposeError(err)
  470. }
  471. workingDir, err := options.GetWorkingDir()
  472. if err != nil {
  473. return err
  474. }
  475. envFromFile, err := dotenv.GetEnvFromFile(composegoutils.GetAsEqualsMap(os.Environ()), workingDir, options.EnvFiles)
  476. if err != nil {
  477. return err
  478. }
  479. for k, v := range envFromFile {
  480. if _, ok := os.LookupEnv(k); !ok { // Precedence to OS Env
  481. if err := os.Setenv(k, v); err != nil {
  482. return err
  483. }
  484. }
  485. }
  486. return nil
  487. }
  488. var printerModes = []string{
  489. ui.ModeAuto,
  490. ui.ModeTTY,
  491. ui.ModePlain,
  492. ui.ModeQuiet,
  493. }