Skip to content

Commit 16f0ea4

Browse files
committed
chore: Update stopAllSites function to use docker-compose down command
1 parent 7806472 commit 16f0ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/global.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func stopAllSites() {
157157
path := filepath.Join(sitesDir, entry.Name())
158158
composePath := filepath.Join(path, "docker-compose.yml")
159159
if _, err := os.Stat(composePath); err == nil {
160-
fmt.Printf("Starting site in %s\n", path)
160+
fmt.Printf("Stopping site in %s\n", path)
161161
docker.RunCompose(composePath, "down")
162162
foundSite = true
163163
}

0 commit comments

Comments
 (0)