We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e9431f commit 67bfbe5Copy full SHA for 67bfbe5
commands/cloud_setup.go
@@ -10,6 +10,7 @@ import (
10
"kool-dev/kool/services/compose"
11
"os"
12
"path/filepath"
13
+ "slices"
14
"strconv"
15
"strings"
16
@@ -86,7 +87,15 @@ func (s *KoolCloudSetup) Execute(args []string) (err error) {
86
87
88
var hasPublicPort bool = false
89
90
+ var serviceNames []string
91
+
92
for serviceName = range composeConfig.Services {
93
+ serviceNames = append(serviceNames, serviceName)
94
+ }
95
96
+ slices.Sort[[]string](serviceNames)
97
98
+ for _, serviceName = range serviceNames {
99
var (
100
confirmed bool
101
isPublic bool = false
0 commit comments