docker-images icon indicating copy to clipboard operation
docker-images copied to clipboard

Container for Oracle 19.3.0 fails upon docker-compose up

Open ArminBeda opened this issue 2 years ago • 1 comments

I have more than 24 GB of free memory:

image

docker info: image

Still I receive this error message upon docker-compose up:

image image

Any ideas?

ArminBeda avatar Oct 17 '23 07:10 ArminBeda

Without the compose specification, it's going to be hard to tell for sure, but I suspect you're mounting /opt/oracle/oradata to a directory on a Linux system, and permissions are not correct on the directory. The mounted filesystem/directory must be owned by the oinstall (or 54321) group or oracle (or 54321) user, else the oracle process running inside the container cannot mkdir -p /opt/oracle/oradata/ORCLCDB (or any other files).

I have a free chapter available here that covers persistence that may help further.

oraclesean avatar Oct 17 '23 21:10 oraclesean