Jenkinsfile: increase shm size to 2g

pull/664/head
pabloFuente 2021-11-03 11:22:01 +01:00
parent e4d0123682
commit abce613468
1 changed files with 3 additions and 3 deletions

View File

@ -113,9 +113,9 @@ node('container') {
'''.stripIndent()) '''.stripIndent())
} }
docker.image('selenium/standalone-chrome:latest').withRun('-p 6666:4444 --name chrome --shm-size=1536m -v /opt/openvidu:/opt/openvidu') { a -> docker.image('selenium/standalone-chrome:latest').withRun('-p 6666:4444 --name chrome --shm-size=2g -v /opt/openvidu:/opt/openvidu') { a ->
docker.image('selenium/standalone-firefox:latest').withRun('-p 6667:4444 --name firefox --shm-size=1536m') { b -> docker.image('selenium/standalone-firefox:latest').withRun('-p 6667:4444 --name firefox --shm-size=2g') { b ->
docker.image('selenium/standalone-opera:latest').withRun('-p 6668:4444 --name opera --shm-size=1536m') { c -> docker.image('selenium/standalone-opera:latest').withRun('-p 6668:4444 --name opera --shm-size=2g') { c ->
// ----- // -----
// Kurento TESTS // Kurento TESTS
// ----- // -----