Created
January 20, 2017 17:01
-
-
Save kekru/d9c0015930b58b945b793fa1f436b1b9 to your computer and use it in GitHub Desktop.
Dockerfile fix for https://github.com/oracle/docker-images/blob/master/OracleDatabase/dockerfiles/11.2.0.2/Dockerfile.xe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LICENSE CDDL 1.0 + GPL 2.0 | |
# | |
# Copyright (c) 1982-2016 Oracle and/or its affiliates. All rights reserved. | |
# | |
# ORACLE DOCKERFILES PROJECT | |
# -------------------------- | |
# This is the Dockerfile for Oracle Database 11g Release 2 Express Edition | |
# | |
# REQUIRED FILES TO BUILD THIS IMAGE | |
# ---------------------------------- | |
# (1) oracle-xe-11.2.0-1.0.x86_64.rpm.zip | |
# Download Oracle Database 11g Release 2 Express Edition for Linux x64 | |
# from http://www.oracle.com/technetwork/database/database-technologies/express-edition/downloads/index.html | |
# | |
# HOW TO BUILD THIS IMAGE | |
# ----------------------- | |
# Put the downloaded file in the same directory as this Dockerfile | |
# Run: | |
# $ docker build -t oracle/database:11.2.0.2-xe . | |
# | |
# IMPORTANT | |
# --------- | |
# Oracle XE requires Docker 1.10.0 and above: | |
# Oracle XE uses shared memory for MEMORY_TARGET and needs at least 1 GB. | |
# Docker only supports --shm-size since Docker 1.10.0 | |
# | |
# Pull base image | |
# --------------- | |
FROM oraclelinux:latest | |
# Maintainer | |
# ---------- | |
MAINTAINER Gerald Venzl <[email protected]> | |
# Environment variables required for this build (do NOT change) | |
# ------------------------------------------------------------- | |
ENV ORACLE_BASE=/u01/app/oracle \ | |
ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe \ | |
ORACLE_SID=XE \ | |
INSTALL_FILE_1="oracle-xe-11.2.0-1.0.x86_64.rpm.zip" \ | |
INSTALL_DIR="$HOME/install" \ | |
CONFIG_RSP="xe.rsp" \ | |
RUN_FILE="runOracle.sh" \ | |
PWD_FILE="setPassword.sh" | |
# Use second ENV so that variable get substituted | |
ENV PATH=$ORACLE_HOME/bin:$PATH | |
# Copy binaries | |
# ------------- | |
COPY $INSTALL_FILE_1 $CONFIG_RSP $RUN_FILE $PWD_FILE $INSTALL_DIR/ | |
# Install Oracle Express Edition | |
# ------------------------------ | |
RUN yum -y install unzip libaio bc initscripts net-tools openssl && \ | |
yum clean all && \ | |
cd $INSTALL_DIR && \ | |
unzip $INSTALL_FILE_1 && \ | |
rm $INSTALL_FILE_1 && \ | |
rpm -i Disk1/*.rpm && \ | |
mkdir $ORACLE_BASE/oradata && \ | |
chown -R oracle:dba $ORACLE_BASE && \ | |
mv $INSTALL_DIR/$CONFIG_RSP $ORACLE_BASE/ && \ | |
mv $INSTALL_DIR/$RUN_FILE $ORACLE_BASE/ && \ | |
mv $INSTALL_DIR/$PWD_FILE $ORACLE_BASE/ && \ | |
ln -s $ORACLE_BASE/$PWD_FILE / && \ | |
cd $HOME && \ | |
# rm -rf $INSTALL_DIR && \ | |
rm /install/Disk1/response/* /install/Disk1/upgrade/* /install/Disk1/oracle-xe-11.2.0-1.0.x86_64.rpm && \ | |
chmod u+x $ORACLE_BASE/$RUN_FILE && \ | |
chmod u+x $ORACLE_BASE/$PWD_FILE | |
# du -h /install | |
VOLUME ["$ORACLE_BASE/oradata"] | |
EXPOSE 1521 8080 | |
CMD $ORACLE_BASE/$RUN_FILE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment