Skip to content

Commit 68034e2

Browse files
authored
Update README.md
1 parent 8ea6751 commit 68034e2

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

README.md

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,53 +5,56 @@ Oracle Express Edition 11g Release 2 on Ubuntu 18.04 LTS
55

66
<del>This **Dockerfile** is a [trusted build](https://registry.hub.docker.com/u/wnameless/oracle-xe-11g/) of [Docker Registry](https://registry.hub.docker.com/).</del>
77

8-
Since 2019-Feb-13(the Valentine's day eve) this docker image has been removed by DockerHub due to the Docker DMCA Takedown Notice from the Copyright owner which is the Oracle.
8+
<del>Since 2019-Feb-13(the Valentine's day eve) this docker image has been removed by DockerHub due to the Docker DMCA Takedown Notice from the Copyright owner which is the Oracle.</del>
99

10-
Happy Valentine's day!
10+
<del>Happy Valentine's day!</del>
1111

12-
## Installation
12+
```diff
13+
+ The new DockerHub [wnameless/oracle-xe-11g-r2] has been released, because
14+
+ the old [wnameless/oracle-xe-11g] is banned by DockerHub and I cannot restore it.
15+
+ Thanks for the help from the staff in Oracle with my DMCA Takedown issue, however this problem
16+
+ is totally ignored by the DockerHub and I barely can't do anything but to open a new repo.
17+
+ Sep 29 2019
18+
```
19+
20+
## Installation(Local)
1321
```
1422
git clone https://github.com/wnameless/docker-oracle-xe-11g.git
1523
cd docker-oracle-xe-11g
1624
docker build -t wnameless/oracle-xe-11g .
1725
```
1826

19-
## Installation(with Ubuntu 18.04)
20-
```
21-
docker pull wnameless/oracle-xe-11g
22-
```
23-
SSH server has been removed since 18.04, please use "docker exec" or 16.04 instead.
24-
25-
## Installation(with Ubuntu 16.04)
27+
## Installation(DockerHub)
2628
```
27-
docker pull wnameless/oracle-xe-11g:16.04
29+
docker pull wnameless/oracle-xe-11g-r2
2830
```
31+
SSH server has been removed since 18.04, please use "docker exec"
2932

3033
## Quick Start
3134

3235
Run with 1521 port opened:
3336
```
34-
docker run -d -p 49161:1521 wnameless/oracle-xe-11g
37+
docker run -d -p 49161:1521 wnameless/oracle-xe-11g-r2
3538
```
3639

3740
Run this, if you want the database to be connected remotely:
3841
```
39-
docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g
42+
docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g-r2
4043
```
4144

4245
For performance concern, you may want to disable the disk asynch IO:
4346
```
44-
docker run -d -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true wnameless/oracle-xe-11g
47+
docker run -d -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true wnameless/oracle-xe-11g-r2
4548
```
4649

4750
Enable XDB user with default password: xdb, run this:
4851
```
49-
docker run -d -p 49161:1521 -e ORACLE_ENABLE_XDB=true wnameless/oracle-xe-11g
52+
docker run -d -p 49161:1521 -e ORACLE_ENABLE_XDB=true wnameless/oracle-xe-11g-r2
5053
```
5154

5255
For APEX user:
5356
```
54-
docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g
57+
docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g-r2
5558
```
5659

5760
```
@@ -60,7 +63,7 @@ username: ADMIN
6063
password: admin
6164
```
6265

63-
For latest APEX(18.1) user, please pull wnameless/oracle-xe-11g:18.04-apex first:
66+
For latest APEX(18.1) user, please pull wnameless/oracle-xe-11g-r2:18.04-apex first:
6467
```
6568
docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g:18.04-apex
6669
```
@@ -89,7 +92,7 @@ oracle
8992
Support custom DB Initialization and running shell scripts
9093
```
9194
# Dockerfile
92-
FROM wnameless/oracle-xe-11g
95+
FROM wnameless/oracle-xe-11g-r2
9396
9497
ADD init.sql /docker-entrypoint-initdb.d/
9598
ADD script.sh /docker-entrypoint-initdb.d/

0 commit comments

Comments
 (0)