Skip to content

Commit dbd94c5

Browse files
committedApr 23, 2016
Upgrade Ubuntu
1 parent 4c8aff2 commit dbd94c5

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed
 

Diff for: ‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:14.04.4
1+
FROM ubuntu:16.04
22

33
MAINTAINER Wei-Ming Wu <wnameless@gmail.com>
44

Diff for: ‎README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
docker-oracle-xe-11g
22
============================
33

4-
Oracle Express Edition 11g Release 2 on Ubuntu 14.04.4 LTS
4+
Oracle Express Edition 11g Release 2 on Ubuntu 16.04 LTS
55

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

8-
### Installation
8+
### Installation(with Ubuntu 16.04)
99
```
1010
docker pull wnameless/oracle-xe-11g
1111
```
1212

13+
### Installation(with older Ubuntu 14.04.4)
14+
```
15+
docker pull wnameless/oracle-xe-11g:14.04.4
16+
```
17+
1318
Run with 22 and 1521 ports opened:
1419
```
1520
docker run -d -p 49160:22 -p 49161:1521 wnameless/oracle-xe-11g

Diff for: ‎assets/setup.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#!/bin/bash
22

3-
# avoid dpkg frontend dialog / frontend warnings
3+
# avoid dpkg frontend dialog / frontend warnings
44
export DEBIAN_FRONTEND=noninteractive
55

66
cat /assets/oracle-xe_11.2.0-1.0_amd64.deba* > /assets/oracle-xe_11.2.0-1.0_amd64.deb
77

88
# Install OpenSSH
9+
apt-get update
910
apt-get install -y openssh-server &&
1011
mkdir /var/run/sshd &&
1112
echo 'root:admin' | chpasswd &&

0 commit comments

Comments
 (0)