mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
25 lines
569 B
Go
25 lines
569 B
Go
|
import { ReqPage } from '.';
|
||
|
|
||
|
export namespace Container {
|
||
|
export interface ContainerOperate {
|
||
|
containerID: string;
|
||
|
operation: string;
|
||
|
newName: string;
|
||
|
}
|
||
|
export interface ContainerSearch extends ReqPage {
|
||
|
status: string;
|
||
|
}
|
||
|
export interface ContainerInfo {
|
||
|
containerID: string;
|
||
|
name: string;
|
||
|
imageName: string;
|
||
|
createTime: string;
|
||
|
state: string;
|
||
|
runTime: string;
|
||
|
}
|
||
|
export interface ContainerLogSearch {
|
||
|
containerID: string;
|
||
|
mode: string;
|
||
|
}
|
||
|
}
|