mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-12 01:24:38 +08:00
Fix: Resolved unInstall app failed due to run compose down timeout (#9436)
This commit is contained in:
parent
9974c5fa20
commit
e2b6ea5253
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ func Down(filePath string) (string, error) {
|
|||
if err := checkCmd(); err != nil {
|
||||
return "", err
|
||||
}
|
||||
stdout, err := cmd.RunDefaultWithStdoutBashCf(global.CONF.DockerConfig.Command+" -f %s down --remove-orphans", filePath)
|
||||
stdout, err := cmd.RunDefaultWithStdoutBashCfAndTimeOut(global.CONF.DockerConfig.Command+" -f %s down --remove-orphans", 20*time.Minute, filePath)
|
||||
return stdout, err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue