fix: 创建编排改为异步操作 (#318)

fix:  创建编排改为异步操作
This commit is contained in:
ssongliu
2023-03-20 18:16:26 +08:00
committed by GitHub
parent 2096049708
commit 0c5a5a6454
7 changed files with 116 additions and 45 deletions

View File

@@ -7,7 +7,7 @@ import (
)
func Up(filePath string) (string, error) {
stdout, err := cmd.Execf("docker-compose -f %s up -d --quiet-pull", filePath)
stdout, err := cmd.Execf("docker-compose -f %s up -d", filePath)
return stdout, err
}