mirror of
https://github.com/docker/compose.git
synced 2025-11-19 05:10:29 +01:00
- compose ls - compose ps - secret ls // Not implemented on ACI so no e2e-aci tests - volume ls Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
/*
|
|
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/formatter"
|
|
)
|
|
|
|
func listCommand() *cobra.Command {
|
|
opts := composeOptions{}
|
|
lsCmd := &cobra.Command{
|
|
Use: "ls",
|
|
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.New(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
stackList, err := c.ComposeService().List(ctx, opts.Name)
|
|
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
|
|
}
|