Skip to content

Commit

Permalink
Merge branch 'main' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
catttam committed Feb 21, 2024
2 parents 2bca415 + 5a36020 commit bd75dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/service_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func serviceListFunc(cmd *cobra.Command, args []string) error {
w := new(tabwriter.Writer)
w.Init(os.Stdout, 0, 8, 2, '\t', 0)
// Print header
fmt.Fprintln(w, "NAME\tCONTAINER\tCPU\tMEMORY")
fmt.Fprintln(w, "NAME\tIMAGE\tCPU\tMEMORY")
// Print services
for _, s := range svcList {
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", s.Name, s.Image, s.CPU, s.Memory)
Expand Down

0 comments on commit bd75dd0

Please sign in to comment.