build.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "github.com/spf13/cobra"
  17. "github.com/docker/compose-cli/api/client"
  18. "github.com/docker/compose-cli/api/progress"
  19. )
  20. type buildOptions struct {
  21. *projectOptions
  22. composeOptions
  23. }
  24. func buildCommand(p *projectOptions) *cobra.Command {
  25. opts := buildOptions{
  26. projectOptions: p,
  27. }
  28. buildCmd := &cobra.Command{
  29. Use: "build [SERVICE...]",
  30. Short: "Build or rebuild services",
  31. RunE: func(cmd *cobra.Command, args []string) error {
  32. return runBuild(cmd.Context(), opts, args)
  33. },
  34. }
  35. return buildCmd
  36. }
  37. func runBuild(ctx context.Context, opts buildOptions, services []string) error {
  38. c, err := client.NewWithDefaultLocalBackend(ctx)
  39. if err != nil {
  40. return err
  41. }
  42. project, err := opts.toProject(services)
  43. if err != nil {
  44. return err
  45. }
  46. _, err = progress.Run(ctx, func(ctx context.Context) (string, error) {
  47. return "", c.ComposeService().Build(ctx, project)
  48. })
  49. return err
  50. }