feat: enable tty to docker run

This commit is contained in:
Michael Kriese 2025-12-12 15:52:45 +01:00 committed by GitHub
parent 6856febbe5
commit 9a16cea083
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) {