1Panel/backend/constant/app.go

19 lines
293 B
Go
Raw Normal View History

package constant
const (
Running = "Running"
UnHealthy = "UnHealthy"
Error = "Error"
Stopped = "Stopped"
Installing = "Installing"
ContainerPrefix = "1Panel-"
2022-09-30 17:56:06 +08:00
AppNormal = "Normal"
AppTakeDown = "TakeDown"
2022-12-13 20:03:54 +08:00
AppNginx = "nginx"
AppMysql = "mysql"
AppRedis = "redis"
2022-09-30 17:56:06 +08:00
)