2020-08-12 10:35:15 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Docker, Inc.
|
|
|
|
|
|
|
|
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 cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2020-08-21 17:24:53 +02:00
|
|
|
"github.com/docker/compose-cli/errdefs"
|
2020-08-12 10:35:15 +02:00
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-multierror"
|
|
|
|
|
2020-09-07 13:23:06 +02:00
|
|
|
"github.com/docker/compose-cli/api/client"
|
2020-08-12 10:35:15 +02:00
|
|
|
)
|
|
|
|
|
2020-08-12 14:33:58 +02:00
|
|
|
// StartCommand starts containers
|
2020-08-12 10:35:15 +02:00
|
|
|
func StartCommand() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "start",
|
|
|
|
Short: "Start one or more stopped containers",
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runStart(cmd.Context(), args)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func runStart(ctx context.Context, args []string) error {
|
|
|
|
c, err := client.New(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "cannot connect to backend")
|
|
|
|
}
|
|
|
|
|
|
|
|
var errs *multierror.Error
|
|
|
|
for _, id := range args {
|
|
|
|
err := c.ContainerService().Start(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
if errdefs.IsNotFoundError(err) {
|
|
|
|
errs = multierror.Append(errs, fmt.Errorf("container %s not found", id))
|
|
|
|
} else {
|
|
|
|
errs = multierror.Append(errs, err)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fmt.Println(id)
|
|
|
|
}
|
|
|
|
if errs != nil {
|
|
|
|
errs.ErrorFormat = formatErrors
|
|
|
|
}
|
|
|
|
|
|
|
|
return errs.ErrorOrNil()
|
|
|
|
}
|