mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-11-07 07:09:46 +00:00
- [System] Fixed the issue of widgets displaying wrongly on mobile devices. - [App] Fix the problem of application opening failure on non-80 ports ([#283](https://github.com/IceWhaleTech/CasaOS/issues/283) [#280](https://github.com/IceWhaleTech/CasaOS/issues/280)) - [System] Modify port failure problem ([#282](https://github.com/IceWhaleTech/CasaOS/issues/282)) - [App]Modify environment variables disappearing problem([#284](https://github.com/IceWhaleTech/CasaOS/issues/284)) - [System]Fix no update alert([#278](https://github.com/IceWhaleTech/CasaOS/issues/278)) - [System] Fixed some bugs of application cpu usage and memory staging([#272]https://github.com/IceWhaleTech/CasaOS/issues/272)
19 lines
468 B
Go
19 lines
468 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.com
|
|
* @Date: 2021-12-08 18:10:25
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-06-14 17:20:36
|
|
* @FilePath: /CasaOS/model/docker.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package model
|
|
|
|
type DockerStatsModel struct {
|
|
Icon string `json:"icon"`
|
|
Title string `json:"title"`
|
|
Data interface{} `json:"data"`
|
|
Pre interface{} `json:"pre"`
|
|
}
|