mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
feat: 启动运行环境增加默认网络检测 (#6820)
This commit is contained in:
parent
123997fa13
commit
7f453aa145
@ -495,6 +495,9 @@ func (r *RuntimeService) OperateRuntime(req request.RuntimeOperate) error {
|
|||||||
_ = runtimeRepo.Save(runtime)
|
_ = runtimeRepo.Save(runtime)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
go func() {
|
||||||
|
_ = docker.CreateDefaultDockerNetwork()
|
||||||
|
}()
|
||||||
switch req.Operate {
|
switch req.Operate {
|
||||||
case constant.RuntimeUp:
|
case constant.RuntimeUp:
|
||||||
if err = runComposeCmdWithLog(req.Operate, runtime.GetComposePath(), runtime.GetLogPath()); err != nil {
|
if err = runComposeCmdWithLog(req.Operate, runtime.GetComposePath(), runtime.GetLogPath()); err != nil {
|
||||||
|
@ -309,10 +309,6 @@ func (w WebsiteService) CreateWebsite(create request.WebsiteCreate) (err error)
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err = docker.CreateDefaultDockerNetwork(); err != nil {
|
|
||||||
err = buserr.WithDetail(constant.Err1PanelNetworkFailed, err.Error(), nil)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
website.RuntimeID = runtime.ID
|
website.RuntimeID = runtime.ID
|
||||||
switch runtime.Type {
|
switch runtime.Type {
|
||||||
case constant.RuntimePHP:
|
case constant.RuntimePHP:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user