compose.go 18 KB

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