Probably the smaller and flexible oracle
2.5K
Oracle Express Edition 11g Release 2 on Ubuntu 14.04.1 LTS
This is a fork from wnameless/docker-oracle-xe-11g to provide simple usage with fig and provisioning capabilities.
docker pull martinsthiago/oraclexe-11g-fig
Place your scripts into the container in /provision, here is a simple provision script
echo "CREATE TABLE TODO(
TITLE VARCHAR(),
SUBTITLE VARCHAR(),
CREATED_ON VARCHAR()
);" | sqlplus system/oracle
Run with port 1521 opened, optionally expose port 8080 for apex:
docker run -d -p 8080:8080 -p 1521:1521 martinsthiago/oraclexe-11g-fig
In case you use fig, create a fig.yml like the one bellow
db:
from: martinsthiago/oraclexe-11g-fig
volumes:
- ./provision:/provision
ports:
- "1521:1521"
- "8080:8080"
Then run fig up db then fig start db
Connect database with following setting:
hostname: localhost
port: 1521
sid: xe
username: system
password: oracle
Password for SYS & SYSTEM
oracle
Content type
Image
Digest
sha256:44320388f…
Size
363.5 MB
Last updated
about 11 years ago
docker pull martinsthiago/oraclexe-11g-fig