Skip to content

Commit

Permalink
preparation of new release: 1.3.111
Browse files Browse the repository at this point in the history
address #58 and #64
  • Loading branch information
tkohegyi committed Nov 23, 2015
1 parent 9a83f90 commit ef16d00
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 92 deletions.
6 changes: 3 additions & 3 deletions config/docker/Dockerfile-Wilma
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN \
apt-get install -y openjdk-7-jre && \
apt-get install -y wget && \
rm -rf /var/lib/apt/lists/* && \
wget https://github.com/epam/Wilma/releases/download/V1.2.83/wilma-application-1.2.83.zip && \
unzip wilma-application-1.2.83.zip && \
rm -f wilma-application-1.2.83.zip
wget https://github.com/epam/Wilma/releases/download/V1.3.111/wilma-application-1.3.111.zip && \
unzip wilma-application-1.3.111.zip && \
rm -f wilma-application-1.3.111.zip

COPY start_wilma.sh /data/
RUN \
Expand Down
6 changes: 3 additions & 3 deletions config/docker/Dockerfile-Wilma_and_Wilma_Message_Search
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ RUN \
apt-get upgrade -y && \
apt-get install -y openjdk-7-jdk && \
rm -rf /var/libs/apt/lists/* && \
wget https://github.com/epam/Wilma/releases/download/V1.2.83/wilma-message-search-1.2.83.zip && \
unzip -o wilma-message-search-1.2.83.zip && \
rm -f wilma-message-search-1.2.83.zip
wget https://github.com/epam/Wilma/releases/download/V1.3.111/wilma-message-search-1.3.111.zip && \
unzip -o wilma-message-search-1.3.111.zip && \
rm -f wilma-message-search-1.3.111.zip

COPY start_wilma_and_message_search.sh /data/
RUN \
Expand Down
2 changes: 1 addition & 1 deletion config/docker/start_wilma.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

WILMA_BUILD=wilma-1.2.83.jar
WILMA_BUILD=wilma-1.3.111.jar
#WILMA_CONFIGURATION is an external environment variable, usually: wilma.conf.properties
#WILMA_MX_SIZE is an external environment variable, for example: -Xmx8G
#WILMA_KEPYSTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
Expand Down
4 changes: 2 additions & 2 deletions config/docker/start_wilma_and_message_search.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

WILMA_BUILD=wilma-1.2.83.jar
WILMA_BUILD=wilma-1.3.111.jar
#WILMA_CONFIGURATION is an external environment variable, usually: wilma.conf.properties
#WILMA_MX_SIZE is an external environment variable, for example -Xmx8G
#WILMA_KESYTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
Expand All @@ -12,7 +12,7 @@ if [ -n "$WILMA_JMX_PORT" ]; then
fi
WILMA_START_CMD="java $WILMA_JMX $WILMA_MX_SIZE $WILMA_KEYSTORE $WILMA_KEYSTORE_PASSWORD -jar $WILMA_BUILD $WILMA_CONFIGURATION"

WILMA_MS_BUILD=wilma-message-search-1.2.83.jar
WILMA_MS_BUILD=wilma-message-search-1.3.111.jar
#WILMA_MS_CONFIGURATION is an external environment variable, usually: message.search.conf.properties
#WILMA_MS_MX_SIZE is an external environment variable, for example: -Xmx8G
#WILMA_MS_JMX_PORT - Wilma Message Search JMX port, if empty, no JMX used, otherwise the JMX port is fully opened
Expand Down
Loading

0 comments on commit ef16d00

Please sign in to comment.