| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | /*   Copyright 2020 Docker Compose CLI authors   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.*/package composeimport (	"context"	"os"	"github.com/compose-spec/compose-go/types"	"github.com/spf13/cobra"	"github.com/docker/compose-cli/api/client"	"github.com/docker/compose-cli/api/compose"	"github.com/docker/compose-cli/progress")type runOptions struct {	Name        string	Command     []string	WorkingDir  string	ConfigPaths []string	Environment []string	Detach      bool	Remove      bool}func runCommand() *cobra.Command {	opts := runOptions{}	runCmd := &cobra.Command{		Use:   "run [options] [-v VOLUME...] [-p PORT...] [-e KEY=VAL...] [-l KEY=VALUE...] SERVICE [COMMAND] [ARGS...]",		Short: "Run a one-off command on a service.",		Args:  cobra.MinimumNArgs(1),		RunE: func(cmd *cobra.Command, args []string) error {			if len(args) > 1 {				opts.Command = args[1:]			}			opts.Name = args[0]			return runRun(cmd.Context(), opts)		},	}	runCmd.Flags().StringVar(&opts.WorkingDir, "workdir", "", "Work dir")	runCmd.Flags().StringArrayVarP(&opts.ConfigPaths, "file", "f", []string{}, "Compose configuration files")	runCmd.Flags().BoolVarP(&opts.Detach, "detach", "d", false, "Run container in background and print container ID")	runCmd.Flags().StringArrayVarP(&opts.Environment, "env", "e", []string{}, "Set environment variables")	runCmd.Flags().BoolVar(&opts.Remove, "rm", false, "Automatically remove the container when it exits")	runCmd.Flags().SetInterspersed(false)	return runCmd}func runRun(ctx context.Context, opts runOptions) error {	projectOpts := composeOptions{		ConfigPaths: opts.ConfigPaths,		WorkingDir:  opts.WorkingDir,		Environment: opts.Environment,	}	c, project, err := setup(ctx, projectOpts, []string{opts.Name})	if err != nil {		return err	}	originalServices := project.Services	_, err = progress.Run(ctx, func(ctx context.Context) (string, error) {		return "", startDependencies(ctx, c, project, opts.Name)	})	if err != nil {		return err	}	project.Services = originalServices	// start container and attach to container streams	runOpts := compose.RunOptions{		Name:       opts.Name,		Command:    opts.Command,		Detach:     opts.Detach,		AutoRemove: opts.Remove,		Writer:     os.Stdout,		Reader:     os.Stdin,	}	return c.ComposeService().RunOneOffContainer(ctx, project, runOpts)}func startDependencies(ctx context.Context, c *client.Client, project *types.Project, requestedService string) error {	originalServices := project.Services	dependencies := types.Services{}	for _, service := range originalServices {		if service.Name != requestedService {			dependencies = append(dependencies, service)		}	}	project.Services = dependencies	if err := c.ComposeService().Create(ctx, project); err != nil {		return err	}	if err := c.ComposeService().Start(ctx, project, nil); err != nil {		return err	}	return nil}
 |