File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -43,21 +43,25 @@ For APEX user:
4343docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g-r2
4444```
4545
46+ For persisted volume, create a directory /opt/data/oracle/11g-r2 and change permission to R/W:
4647```
47- # Login http://localhost:8080/apex/apex_admin with following credential:
48- username: ADMIN
49- password: admin
48+ docker run -d \
49+ -p 49160:22 \
50+ -p 49161:1521 \
51+ -p 18080:8080 \
52+ -e ORACLE_ALLOW_REMOTE=true \
53+ -e ORACLE_DISABLE_ASYNCH_IO=true \
54+ -e ORACLE_ENABLE_XDB=true \
55+ --mount source=oracle_vol,target=/opt/data/oracle/11g-r2 \
56+ wnameless/oracle-xe-11g-r2
5057```
5158
52- For latest APEX(18.1) user, please pull wnameless/oracle-xe-11g-r2:18.04-apex first:
53- ```
54- docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g:18.04-apex
55- ```
59+
5660
5761```
5862# Login http://localhost:8080/apex/apex_admin with following credential:
5963username: ADMIN
60- password: Oracle_11g
64+ password: admin
6165```
6266
6367By default, the password verification is disable(password never expired)<br />
You can’t perform that action at this time.
0 commit comments