| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- 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 compose
- import (
- "context"
- "fmt"
- "io"
- "os"
- "strings"
- "github.com/spf13/cobra"
- "github.com/docker/compose-cli/api/client"
- "github.com/docker/compose-cli/api/compose"
- "github.com/docker/compose-cli/cli/formatter"
- )
- func listCommand() *cobra.Command {
- opts := composeOptions{}
- lsCmd := &cobra.Command{
- Use: "ls",
- Short: "List running compose projects",
- RunE: func(cmd *cobra.Command, args []string) error {
- return runList(cmd.Context(), opts)
- },
- }
- addComposeCommonFlags(lsCmd.Flags(), &opts)
- return lsCmd
- }
- func runList(ctx context.Context, opts composeOptions) error {
- c, err := client.NewWithDefaultLocalBackend(ctx)
- if err != nil {
- return err
- }
- stackList, err := c.ComposeService().List(ctx, opts.ProjectName)
- if err != nil {
- return err
- }
- if opts.Quiet {
- for _, s := range stackList {
- fmt.Println(s.Name)
- }
- return nil
- }
- view := viewFromStackList(stackList)
- return formatter.Print(view, opts.Format, os.Stdout, func(w io.Writer) {
- for _, stack := range view {
- _, _ = fmt.Fprintf(w, "%s\t%s\n", stack.Name, stack.Status)
- }
- }, "NAME", "STATUS")
- }
- type stackView struct {
- Name string
- Status string
- }
- func viewFromStackList(stackList []compose.Stack) []stackView {
- retList := make([]stackView, len(stackList))
- for i, s := range stackList {
- retList[i] = stackView{
- Name: s.Name,
- Status: strings.TrimSpace(fmt.Sprintf("%s %s", s.Status, s.Reason)),
- }
- }
- return retList
- }
|