Unable to run XE images on Windows 11 due to permission issues #228
Unanswered
franco-caponi-ws
asked this question in
Q&A
Replies: 1 comment
-
Maybe the directory in the host (aka. Windows) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
i'm facing issues trying to use these wonderful images on my pc running windows 11 (on docker desktop set as linux), while they work without issues on a network pc based on linux.
The images run without issues with these commands:
mkdir /home/franco/.oracle_data
chown 1000:1000 /home/franco/.oracle_data
docker run -d
-p 1521:1521
-e ORACLE_PASSWORD=website
-v /home/franco/.oracle_data:/opt/oracle/oradata/XE
gvenzl/oracle-xe:11.2.0.2-full-faststart
but when I issue create tablespace command
CREATE TABLESPACE MY_TABLESPACE
DATAFILE '/opt/oracle/oradata/XE/MY_TABLESPACE.DBF'
SIZE 5M AUTOEXTEND ON NEXT 5M MAXSIZE UNLIMITED;
i got permission issue
Linux-x86_64 Error: 13: Permission denied
Any hint?
Beta Was this translation helpful? Give feedback.
All reactions