mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-25 19:49:14 +08:00
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/global"
|
|
"path"
|
|
)
|
|
|
|
type AppInstall struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"type:varchar(64);not null"`
|
|
Version string `json:"version" gorm:"type:varchar(256);not null"`
|
|
AppId uint `json:"appId" gorm:"type:integer;not null"`
|
|
AppDetailId uint `json:"appDetailId" gorm:"type:integer;not null"`
|
|
Params string `json:"params" gorm:"type:longtext;"`
|
|
Status string `json:"status" gorm:"type:varchar(256);not null"`
|
|
Description string `json:"description" gorm:"type:varchar(256);"`
|
|
Message string `json:"message" gorm:"type:longtext;"`
|
|
CanUpdate bool `json:"canUpdate"`
|
|
App App `json:"-"`
|
|
Containers []AppContainer `json:"containers"`
|
|
}
|
|
|
|
func (i AppInstall) GetPath() string {
|
|
return path.Join(global.CONF.System.AppDir, i.App.Key, i.Name)
|
|
}
|
|
|
|
func (i AppInstall) GetComposePath() string {
|
|
return path.Join(global.CONF.System.AppDir, i.App.Key, i.Name, "docker-compose.yml")
|
|
}
|