Skip to content

Commit de85cce

Browse files
committed
fix: Fix container orchestration creation failure issue
1 parent 955d9db commit de85cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent/utils/compose/compose.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func UpWithTask(filePath string, task *task.Task) error {
8080
}
8181
}
8282

83-
return cmd.NewCommandMgr(cmd.WithTask(*task)).Run("%s %s up -d", global.CONF.DockerConfig.Command, loadFiles(filePath))
83+
return cmd.NewCommandMgr(cmd.WithTask(*task)).RunBashCf("%s %s up -d", global.CONF.DockerConfig.Command, loadFiles(filePath))
8484
}
8585

8686
func Down(filePath string) (string, error) {

0 commit comments

Comments
 (0)