mirror of https://github.com/1Panel-dev/1Panel
fix: 解决应用重建失败的问题 (#3967)
parent
58f58f0fac
commit
f0d5aca657
|
@ -903,27 +903,11 @@ func rebuildApp(appInstall model.AppInstall) error {
|
|||
_ = handleErr(appInstall, err, out)
|
||||
return
|
||||
}
|
||||
fileOp := files.NewFileOp()
|
||||
envByte, err := fileOp.GetContent(appInstall.GetEnvPath())
|
||||
out, err = compose.Up(appInstall.GetComposePath())
|
||||
if err != nil {
|
||||
_ = handleErr(appInstall, err, out)
|
||||
return
|
||||
}
|
||||
composeByte, err := fileOp.GetContent(dockerComposePath)
|
||||
if err != nil {
|
||||
_ = handleErr(appInstall, err, out)
|
||||
return
|
||||
}
|
||||
|
||||
project, err := composeV2.GetComposeProject(appInstall.Name, appInstall.GetPath(), composeByte, envByte, true)
|
||||
if err != nil {
|
||||
_ = handleErr(appInstall, err, out)
|
||||
return
|
||||
}
|
||||
if err = composeV2.UpComposeProject(project); err != nil {
|
||||
_ = handleErr(appInstall, err, out)
|
||||
return
|
||||
}
|
||||
|
||||
appInstall.Status = constant.Running
|
||||
_ = appInstallRepo.Save(context.Background(), &appInstall)
|
||||
|
|
Loading…
Reference in New Issue