docker-oracle-xe-11g
docker-oracle-xe-11g copied to clipboard
:whale: Dockerfile of Oracle Database Express Edition 11g Release 2
Since the image is removed from Docker Hub, I'm trying to build the image myself, but I can't seem to succeed with that. When building the docker image, the command...
Listener refused the connection with the following error: ORA-12528, TNS:listener: all appropriate instances are blocking new connections
Just noticed the following output, if /docker-entrypoint-initdb.d is a file. ``` Starting import scripts from '/docker-entrypoint-initdb.d': /entrypoint.sh: line 108: /docker-entrypoint-initdb.d/.cache: Not a directory /entrypoint.sh: line 109: /docker-entrypoint-initdb.d/.cache: Not a directory...
I run the command below to start a container with a test.dmp file inside the `sh_sql_dmp_files` directory to get it auto import: ``` docker run -d --restart=always --name oracle -p...
`docker run -d -p 18080:8080 -p 1521:1521 --name oracle1 -v /docker/oracle/myoracle0:/u01/app/oracle -e CHARACTER_SET=ZHS16GBK sath89/oracle-xe-11g` then i exec sql `select * from nls_database_parameters ;` this results: > NLS_CHARACTERSET AL32UTF8 it's alaways...
Hi @MaksymBilenko, Thank you for creating this docker image, it is really useful for our testing! I am using it on MacOS and Ubuntu 16.04 without any problems but it...
After installation, I run the docker: > docker run -d -p 8080:8080 -p 1521:1521 -v /my/oracle/data:/u01/app/oracle sath89/oracle-xe-11g But can't access http://localhost:8080/apex The error message is: ``` This page isn’t working...
Hello. Is there any approach to set a timezone for the container? I use [this solution](https://serverfault.com/questions/683605/docker-container-time-timezone-will-not-reflect-changes) to set a timezone, but it does not work. I try to link `-v...
I've a container running in a host and need save it to share with anothers. Follow my steps: 1. `docker commit ` 2. `docker save -o .tar ` 3. Copy...
Hi, First off all, thanks for share your work. Some times, when the oracles listener delays a litle bit more and the script starts tos import the *.sql files, we...