@@ -7,32 +7,32 @@ This **Dockerfile** is a [trusted build](https://registry.hub.docker.com/u/wname
7
7
8
8
### Installation(with Ubuntu 16.04)
9
9
```
10
- docker pull williamjablonski/oracle-xe-11g-utf8
10
+ docker pull williamjablonski/docker- oracle-xe-11g-utf8
11
11
```
12
12
13
13
Run with 22 and 1521 ports opened:
14
14
```
15
- docker run -d -p 49160:22 -p 49161:1521 williamjablonski/oracle-xe-11g-utf8
15
+ docker run -d -p 49160:22 -p 49161:1521 williamjablonski/docker- oracle-xe-11g-utf8
16
16
```
17
17
18
18
Run this, if you want the database to be connected remotely:
19
19
```
20
- docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true williamjablonski/oracle-xe-11g-utf8
20
+ docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true williamjablonski/docker- oracle-xe-11g-utf8
21
21
```
22
22
23
23
By default, the password verification is disable(password never expired). If you want it back, run this:
24
24
```
25
- docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_PASSWORD_VERIFY=true williamjablonski/oracle-xe-11g-utf8
25
+ docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_PASSWORD_VERIFY=true williamjablonski/docker- oracle-xe-11g-utf8
26
26
```
27
27
28
28
For performance concern, you may want to disable the disk asynch IO:
29
29
```
30
- docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true williamjablonski/oracle-xe-11g-utf8
30
+ docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_DISABLE_ASYNCH_IO=true williamjablonski/docker- oracle-xe-11g-utf8
31
31
```
32
32
33
33
For XDB user, run this:
34
34
```
35
- docker run -d -p 49160:22 -p 49161:1521 -p 8080:8080 -e ORACLE_ENABLE_XDB=true williamjablonski/oracle-xe-11g-utf8
35
+ docker run -d -p 49160:22 -p 49161:1521 -p 8080:8080 -e ORACLE_ENABLE_XDB=true williamjablonski/docker- oracle-xe-11g-utf8
36
36
```
37
37
38
38
Check if localhost:8080 work
@@ -77,7 +77,7 @@ password: admin
77
77
Support custom DB Initialization
78
78
```
79
79
# Dockerfile
80
- FROM williamjablonski/oracle-xe-11g-utf8
80
+ FROM williamjablonski/docker- oracle-xe-11g-utf8
81
81
82
82
ADD init.sql /docker-entrypoint-initdb.d/
83
83
```
0 commit comments