|
1 | 1 | docker-oracle-xe-11g
|
2 | 2 | ============================
|
3 | 3 |
|
4 |
| -Oracle Express Edition 11g Release 2 on Ubuntu 16.04 LTS |
| 4 | +Oracle Express Edition 11g Release 2 on Ubuntu 18.04 LTS |
5 | 5 |
|
6 | 6 | This **Dockerfile** is a [trusted build](https://registry.hub.docker.com/u/wnameless/oracle-xe-11g/) of [Docker Registry](https://registry.hub.docker.com/).
|
7 | 7 |
|
8 |
| -## Installation(with Ubuntu 16.04) |
| 8 | +## Installation(with Ubuntu 18.04) |
9 | 9 | ```
|
10 | 10 | docker pull wnameless/oracle-xe-11g
|
11 | 11 | ```
|
| 12 | +SSH server has been removed since 18.04, please use "docker exec" or 16.04 instead. |
| 13 | + |
| 14 | +## Installation(with Ubuntu 16.04) |
| 15 | +``` |
| 16 | +docker pull wnameless/oracle-xe-11g:16.04 |
| 17 | +``` |
12 | 18 |
|
13 | 19 | ## Quick Start
|
14 | 20 |
|
15 |
| -Run with 22 and 1521 ports opened: |
| 21 | +Run with 1521 port opened: |
16 | 22 | ```
|
17 |
| -docker run -d -p 49160:22 -p 49161:1521 wnameless/oracle-xe-11g |
| 23 | +docker run -d -p 49161:1521 wnameless/oracle-xe-11g |
18 | 24 | ```
|
19 | 25 |
|
20 | 26 | Run this, if you want the database to be connected remotely:
|
21 | 27 | ```
|
22 |
| -docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g |
| 28 | +docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g |
23 | 29 | ```
|
24 | 30 |
|
25 | 31 | For performance concern, you may want to disable the disk asynch IO:
|
26 | 32 | ```
|
27 |
| -docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true wnameless/oracle-xe-11g |
| 33 | +docker run -d -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true wnameless/oracle-xe-11g |
28 | 34 | ```
|
29 | 35 |
|
30 | 36 | For XDB user, run this:
|
31 | 37 | ```
|
32 |
| -docker run -d -p 49160:22 -p 49161:1521 -p 8080:8080 -e ORACLE_ENABLE_XDB=true wnameless/oracle-xe-11g |
| 38 | +docker run -d -p 49161:1521 -p 8080:8080 -e ORACLE_ENABLE_XDB=true wnameless/oracle-xe-11g |
33 | 39 | ```
|
34 | 40 |
|
35 | 41 | Check if localhost:8080 work
|
@@ -66,12 +72,6 @@ Password for SYS & SYSTEM
|
66 | 72 | oracle
|
67 | 73 | ```
|
68 | 74 |
|
69 |
| -Login by SSH |
70 |
| -``` |
71 |
| -ssh root@localhost -p 49160 |
72 |
| -password: admin |
73 |
| -``` |
74 |
| - |
75 | 75 | Support custom DB Initialization
|
76 | 76 | ```
|
77 | 77 | # Dockerfile
|
|
0 commit comments