My oracle xe container is currently not starting because of a lack of shared memory:
"A database XE container needs at least 1 GB of shared memory (/dev/shm)."
My problem here: How can I set the shm_size (shmSize) for OracleContainer respectively GenericContainer?
I've already tried: .withCreateContainerCmdModifier(cmd -> cmd.withMemory((long) 4 * 1024 * 1024)).
Also tried some settings within the testcontainers.properties. Unfortunately I've not found what params are available and how to set it here.
Any help welcome. Thanks.
Reactions are currently unavailable
My oracle xe container is currently not starting because of a lack of shared memory:
"A database XE container needs at least 1 GB of shared memory (/dev/shm)."
My problem here: How can I set the shm_size (shmSize) for OracleContainer respectively GenericContainer?
I've already tried: .withCreateContainerCmdModifier(cmd -> cmd.withMemory((long) 4 * 1024 * 1024)).
Also tried some settings within the testcontainers.properties. Unfortunately I've not found what params are available and how to set it here.
Any help welcome. Thanks.