feat: enable tty for docker run (#974)
Some checks are pending
Build / prepare (push) Waiting to run
Build / commitlint (push) Waiting to run
Build / lint (push) Blocked by required conditions
Build / e2e (example/renovate-config.js) (push) Blocked by required conditions
Build / e2e (example/renovate-config.json) (push) Blocked by required conditions
Build / release (push) Blocked by required conditions

feat: enable tty to docker run
This commit is contained in:
Michael Kriese 2025-12-12 15:57:18 +01:00 committed by GitHub
parent 6856febbe5
commit 7f974c0f8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,7 +76,7 @@ export class Renovate {
dockerArguments.push(dockerCmd);
}
const command = `docker run ${dockerArguments.join(' ')}`;
const command = `docker run -t ${dockerArguments.join(' ')}`;
const code = await exec(command);
if (code !== 0) {