MaksymBilenko / docker-oracle-12c

:whale: Docker image with Oracle Database 12c on board
Apache License 2.0
680 stars 285 forks source link

cannot stat docker-entrypoint-initdb.d: No such file or directory #91

Closed ghost closed 6 years ago

ghost commented 6 years ago

When i run the following command on windows 10 linux container option. I get the following error. docker run -d -p 1521:1521 sath89/oracle-12c

cannot stat '/docker-entrypoint-initdb.d/*': No such file or directory

ghost commented 6 years ago

I had to map the volume to my local disk path. Then it worked. docker run -d -p 1521:1521 -v /c/oracle/:/docker-entrypoint-initdb.d sath89/oracle-12c