fix: add user to docker group

This commit is contained in:
Michael Kriese 2020-05-07 10:06:40 +02:00
parent b81b502e32
commit 59aea0778f

View file

@ -20,6 +20,7 @@ class Renovate {
} }
async runDockerContainer(): Promise<void> { async runDockerContainer(): Promise<void> {
await exec('usermod', ['-aG', 'docker', '1000']);
const commandArguments = [ const commandArguments = [
'--rm', '--rm',
`--env ${this.configFileEnv}=${this.configFileMountPath()}`, `--env ${this.configFileEnv}=${this.configFileMountPath()}`,