feat: 应用安装页面 已安装应用列表

This commit is contained in:
zhengkunwang223
2022-09-26 16:32:40 +08:00
committed by zhengkunwang223
parent da85e416ea
commit f7263934f9
28 changed files with 708 additions and 169 deletions

View File

@@ -6,7 +6,7 @@ func Up(filePath string) (string, error) {
cmd := exec.Command("docker-compose", "-f", filePath, "up", "-d")
stdout, err := cmd.CombinedOutput()
if err != nil {
return "", err
return string(stdout), err
}
return string(stdout), nil
}