interfaces/ts/data/version.ts

12 lines
321 B
TypeScript
Raw Normal View History

2024-01-23 22:38:10 +00:00
export interface IContainerVersionData {
/**
* the docker image url
* example: registry.gitlab.com/hosttoday/ht-docker-node:latest
*/
dockerImageUrl: string;
/**
* the docker image version. Note: This is different from docker tags that are often used for versions.
*/
dockerImageVersion: string;
}