Amrita Ramnauth
Results
2
comments of
Amrita Ramnauth
You can specify ulimits in docker run command: docker run -d --name oracle -p 1521:1521 --ulimit nofile=1024:65536 container-registry.oracle.com/database/enterprise:19.3.0.0
The problem is twofold: 1. To address the out-of-memory issue, "library initialization failed - unable to allocate file descriptor table - out of memory/opt/oracle/createDB.sh: ", try specifying --ulimit nofile=1024:65536, see...