compose.go 17 KB

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