Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated payara and derby version, also updated depricated maintainer … #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions payara-with-derby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM airhacks/payara
MAINTAINER Adam Bien, adam-bien.com
ENV VERSION db-derby-10.12.1.1
RUN curl -O http://mirror.dkd.de/apache/db/derby/db-derby-10.12.1.1/${VERSION}-bin.zip
LABEL maintainer="Adam Bien, adam-bien.com"
ENV VERSION db-derby-10.13.1.1
RUN curl -O http://mirror.dkd.de/apache/db/derby/${VERSION}/${VERSION}-bin.zip
RUN unzip ${VERSION}-bin.zip -d ${INSTALL_DIR}
RUN rm -R ${INSTALL_DIR}payara41/javadb && mv ${INSTALL_DIR}${VERSION}-bin ${INSTALL_DIR}/payara41/javadb
ADD start.sh .
Expand Down
5 changes: 3 additions & 2 deletions payara/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM airhacks/java
MAINTAINER Adam Bien, adam-bien.com
LABEL maintainer="Adam Bien, adam-bien.com"
ENV PAYARA_ARCHIVE payara41
ENV DOMAIN_NAME domain1
ENV PAYARA_VERSION 4.1.2.173
ENV INSTALL_DIR /
RUN curl -o ${INSTALL_DIR}/${PAYARA_ARCHIVE}.zip -L https://s3-eu-west-1.amazonaws.com/payara.fish/Payara+Downloads/Payara+4.1.2.172/payara-4.1.2.172.zip \
RUN curl -o ${INSTALL_DIR}/${PAYARA_ARCHIVE}.zip -L https://s3-eu-west-1.amazonaws.com/payara.fish/Payara+Downloads/Payara+${PAYARA_VERSION}/payara-${PAYARA_VERSION}.zip \
&& unzip ${INSTALL_DIR}/${PAYARA_ARCHIVE}.zip -d ${INSTALL_DIR} \
&& rm ${INSTALL_DIR}/${PAYARA_ARCHIVE}.zip
ENV PAYARA_HOME ${INSTALL_DIR}/payara41/glassfish
Expand Down