Skip to content

Commit

Permalink
Merge pull request #82 from stolp/#81
Browse files Browse the repository at this point in the history
Fixes #81.
  • Loading branch information
stolp authored Oct 24, 2023
2 parents f39ddf0 + ce1925b commit 50a7ab5
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
4 changes: 3 additions & 1 deletion ApacheDerby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ ENV TOMCAT_AJP_PORT ${TOMCAT_AJP_PORT:-18009}

# Klaros release version, which is used during installation. A list of available releases can be found on the official Klaros Test Management website or on GitHub.
ENV KLAROS_VERSION ${KLAROS_VERSION:-5.5.4}
# The location of the distributed Klaros installation files
ENV KLAROS_DISTRIBUTION ${KLAROS_DISTRIBUTION:-https://www.klaros-testmanagement.com/files}

ENV KLAROS_HOME /data/klaros-home
ENV CATALINA_BASE /data/catalina-base

EXPOSE ${TOMCAT_HTTP_PORT}

ADD files/auto-install.xml /tmp/auto-install.xml
ADD https://www.klaros-testmanagement.com/files/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD ${KLAROS_DISTRIBUTION}/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD .start.sh /

RUN set -xe \
Expand Down
6 changes: 5 additions & 1 deletion MariaDB/klaros/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ARG KLAROS_LANG=eng
ARG TOMCAT_HTTP_PORT
ARG TOMCAT_SERVER_PORT
ARG TOMCAT_AJP_PORT
ARG KLAROS_DISTRIBUTION
ARG KLAROS_VERSION
ARG TOMCAT_ADMIN_PASSWORD

Expand All @@ -33,14 +34,17 @@ ENV TOMCAT_AJP_PORT ${TOMCAT_AJP_PORT:-18009}

# Klaros release version, which is used during installation. A list of available releases can be found on the official Klaros Test Management website or on GitHub.
ENV KLAROS_VERSION ${KLAROS_VERSION:-5.5.4}
# The location of the distributed Klaros installation files
ENV KLAROS_DISTRIBUTION ${KLAROS_DISTRIBUTION:-https://www.klaros-testmanagement.com/files}

ENV KLAROS_HOME /data/klaros-home
ENV CATALINA_BASE /data/catalina-base

EXPOSE ${TOMCAT_HTTP_PORT}

ADD files/auto-install.xml /tmp/auto-install.xml
ADD files/catalina-wrapper.sh /root/catalina-wrapper.sh
ADD https://www.klaros-testmanagement.com/files/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD ${KLAROS_DISTRIBUTION}/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar

RUN set -xe \
&& apt-get -y update \
Expand Down
5 changes: 4 additions & 1 deletion Microsoft SQL Server/klaros/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,17 @@ ENV TOMCAT_AJP_PORT ${TOMCAT_AJP_PORT:-18009}

# Klaros release version, which is used during installation. A list of available releases can be found on the official Klaros Test Management website or on GitHub.
ENV KLAROS_VERSION ${KLAROS_VERSION:-5.5.4}
# The location of the distributed Klaros installation files
ENV KLAROS_DISTRIBUTION ${KLAROS_DISTRIBUTION:-https://www.klaros-testmanagement.com/files}

ENV KLAROS_HOME /data/klaros-home
ENV CATALINA_BASE /data/catalina-base

EXPOSE ${TOMCAT_HTTP_PORT}

ADD files/auto-install.xml /tmp/auto-install.xml
ADD files/catalina-wrapper.sh /root/catalina-wrapper.sh
ADD https://www.klaros-testmanagement.com/files/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD ${KLAROS_DISTRIBUTION}/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar

RUN set -xe \
&& apt-get -y update \
Expand Down
5 changes: 4 additions & 1 deletion MySQL/klaros/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,17 @@ ENV TOMCAT_AJP_PORT ${TOMCAT_AJP_PORT:-18009}

# Klaros release version, which is used during installation. A list of available releases can be found on the official Klaros Test Management website or on GitHub.
ENV KLAROS_VERSION ${KLAROS_VERSION:-5.5.4}
# The location of the distributed Klaros installation files
ENV KLAROS_DISTRIBUTION ${KLAROS_DISTRIBUTION:-https://www.klaros-testmanagement.com/files}

ENV KLAROS_HOME /data/klaros-home
ENV CATALINA_BASE /data/catalina-base

EXPOSE ${TOMCAT_HTTP_PORT}

ADD files/auto-install.xml /tmp/auto-install.xml
ADD files/catalina-wrapper.sh /root/catalina-wrapper.sh
ADD https://www.klaros-testmanagement.com/files/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD ${KLAROS_DISTRIBUTION}/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar

RUN set -xe \
&& apt-get -y update \
Expand Down
5 changes: 4 additions & 1 deletion PostgreSQL/klaros/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,17 @@ ENV TOMCAT_AJP_PORT ${TOMCAT_AJP_PORT:-18009}

# Klaros release version, which is used during installation. A list of available releases can be found on the official Klaros Test Management website or on GitHub.
ENV KLAROS_VERSION ${KLAROS_VERSION:-5.5.4}
# The location of the distributed Klaros installation files
ENV KLAROS_DISTRIBUTION ${KLAROS_DISTRIBUTION:-https://www.klaros-testmanagement.com/files}

ENV KLAROS_HOME /data/klaros-home
ENV CATALINA_BASE /data/catalina-base

EXPOSE ${TOMCAT_HTTP_PORT}

ADD files/auto-install.xml /tmp/auto-install.xml
ADD files/catalina-wrapper.sh /root/catalina-wrapper.sh
ADD https://www.klaros-testmanagement.com/files/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar
ADD ${KLAROS_DISTRIBUTION}/${KLAROS_VERSION}/Klaros-${KLAROS_VERSION}-Setup.jar /tmp/Klaros-Setup.jar

RUN set -xe \
&& apt-get -y update \
Expand Down

0 comments on commit 50a7ab5

Please sign in to comment.