1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

feat(api/snapshot): extend docker container snapshot type (#8537)

This commit is contained in:
LP B 2023-03-01 17:33:40 +01:00 committed by GitHub
parent 7dcd6f9b9e
commit bc6a667a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 9 deletions

View file

@ -1,7 +1,11 @@
import { DockerContainer } from '@/react/docker/containers/types';
export type DockerContainerSnapshot = DockerContainer & {
Env?: string[];
};
export type DockerSnapshotRaw = {
Containers: DockerContainer[];
Containers: DockerContainerSnapshot[];
SnapshotTime: string;
};