chore: testing

This commit is contained in:
Michael Kriese 2020-05-07 10:44:26 +02:00
parent c3f320cd62
commit e6df98fa8c
2 changed files with 1 additions and 4 deletions

View file

@ -20,16 +20,14 @@ class Renovate {
}
async runDockerContainer(): Promise<void> {
await exec('sudo', ['chmod', 'o=rw', '/var/run/docker.sock']);
const commandArguments = [
'--rm',
`--env ${this.configFileEnv}=${this.configFileMountPath()}`,
`--env ${this.tokenEnv}=${this.token}`,
`-e RENOVATE_DOCKER_USER=1001`,
`-e HOME=/home/ubuntu`,
`--volume ${this.configFile}:${this.configFileMountPath()}`,
`-v /var/run/docker.sock:/var/run/docker.sock`,
`-v /tmp:/tmp`,
`-u 1001`,
this.docker.image(),
];
const command = `docker run ${commandArguments.join(' ')}`;