Skip to content

Commit 182da7e

Browse files
Update README.md
1 parent 4bf0bc2 commit 182da7e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,32 @@ This **Dockerfile** is a [trusted build](https://registry.hub.docker.com/u/wname
77

88
### Installation(with Ubuntu 16.04)
99
```
10-
docker pull williamjablonski/oracle-xe-11g-utf8
10+
docker pull williamjablonski/docker-oracle-xe-11g-utf8
1111
```
1212

1313
Run with 22 and 1521 ports opened:
1414
```
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
1616
```
1717

1818
Run this, if you want the database to be connected remotely:
1919
```
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
2121
```
2222

2323
By default, the password verification is disable(password never expired). If you want it back, run this:
2424
```
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
2626
```
2727

2828
For performance concern, you may want to disable the disk asynch IO:
2929
```
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
3131
```
3232

3333
For XDB user, run this:
3434
```
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
3636
```
3737

3838
Check if localhost:8080 work
@@ -77,7 +77,7 @@ password: admin
7777
Support custom DB Initialization
7878
```
7979
# Dockerfile
80-
FROM williamjablonski/oracle-xe-11g-utf8
80+
FROM williamjablonski/docker-oracle-xe-11g-utf8
8181
8282
ADD init.sql /docker-entrypoint-initdb.d/
8383
```

0 commit comments

Comments
 (0)