mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
* add send notify function * add shell script * add system notiry * remove disk and test common package * update http status * add share function to common * remove temp path * remove /DATA directory initialization - moved to local-storage (#578) * update goreleaser configuration * wip * change service type to notify for systemd so its status is OK only when service is initialized successfully * update CasaOS-Common to fix runtime error * wip * add send notify function * add shell script * add system notiry * remove disk and test common package * update http status * add share function to common * remove temp path * remove /DATA directory initialization - moved to local-storage (#578) * update goreleaser configuration * wip * change service type to notify for systemd so its status is OK only when service is initialized successfully * update CasaOS-Common to fix runtime error * wip * wip * wip * wip * wip * Utilization interface to supplement disk information * fix upload file * wip * wip * add update url * wip * wip * add change log * update changelog Co-authored-by: LinkLeong <a624669980@163.com>
25 lines
705 B
Go
25 lines
705 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.com
|
|
* @Date: 2021-12-08 18:10:25
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-07-13 10:49:16
|
|
* @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"`
|
|
Previous interface{} `json:"previous"`
|
|
}
|
|
|
|
// reference - https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file
|
|
type DockerDaemonConfigurationModel struct {
|
|
// e.g. `/var/lib/docker`
|
|
Root string `json:"data-root,omitempty"`
|
|
}
|