code improvement

This commit is contained in:
Andras Bacsai
2022-04-06 21:37:42 +02:00
parent 9f2f5b40c3
commit f3cdda29bc
8 changed files with 12 additions and 19 deletions

View File

@@ -18,7 +18,11 @@ export type ComposeFileService = {
restart: ComposeFileRestartOption;
depends_on?: string[];
command?: string;
build?: string;
build?: {
context: string;
dockerfile: string;
args?: Record<string, unknown>;
};
};
export type ComposerFileVersion =