Skip to content

Commit 8ba2bc9

Browse files
committed
docker(install): LIMA_START_TIMEOUT env var
Signed-off-by: CrazyMax <[email protected]>
1 parent 8032ed9 commit 8ba2bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docker/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class Install {
331331
};
332332

333333
await core.group('Starting lima instance', async () => {
334-
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=15m`];
334+
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=${process.env.LIMA_START_TIMEOUT ?? '15m'}`];
335335
if (process.env.LIMA_START_ARGS) {
336336
limaStartArgs.push(process.env.LIMA_START_ARGS);
337337
}

0 commit comments

Comments
 (0)