fix: Fix container orchestration creation failure issue (#11430)

This commit is contained in:
ssongliu 2025-12-22 18:21:51 +08:00 committed by GitHub
parent 955d9db699
commit c9cc064f51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,7 +80,7 @@ func UpWithTask(filePath string, task *task.Task) error {
}
}
return cmd.NewCommandMgr(cmd.WithTask(*task)).Run("%s %s up -d", global.CONF.DockerConfig.Command, loadFiles(filePath))
return cmd.NewCommandMgr(cmd.WithTask(*task)).RunBashCf("%s %s up -d", global.CONF.DockerConfig.Command, loadFiles(filePath))
}
func Down(filePath string) (string, error) {