openvidu-test-e2e: give android container 4GB shm-size

pull/669/head
pabloFuente 2021-11-08 11:38:04 +01:00
parent 6ac5d98211
commit 319a5a1e59
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ public class AbstractOpenViduTestAppE2eTest {
.withPrivilegedMode(true) .withPrivilegedMode(true)
.withEnv(Map.of("DEVICE", "Samsung Galaxy S10", "APPIUM", "true", "APPIUM_HOST", "172.17.0.1", .withEnv(Map.of("DEVICE", "Samsung Galaxy S10", "APPIUM", "true", "APPIUM_HOST", "172.17.0.1",
"APPIUM_PORT", "4723", "MOBILE_WEB_TEST", "true", "RELAXED_SECURITY", "true")) "APPIUM_PORT", "4723", "MOBILE_WEB_TEST", "true", "RELAXED_SECURITY", "true"))
.withExposedPorts(6080, 5554, 5555, 4723).waitingFor(waitAndroid) .withSharedMemorySize(4294967296L).withExposedPorts(6080, 5554, 5555, 4723).waitingFor(waitAndroid)
.withFileSystemBind("/opt/openvidu-cache", "/opt/openvidu-cache"); .withFileSystemBind("/opt/openvidu-cache", "/opt/openvidu-cache");
android.setPortBindings(Arrays.asList("6080:6080", "5554:5554", "5555:5555", "4723:4723")); android.setPortBindings(Arrays.asList("6080:6080", "5554:5554", "5555:5555", "4723:4723"));
} }