forked from OpenLiberty/ci.docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
379 changed files
with
3,191 additions
and
860 deletions.
There are no files selected for viewing
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
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
25 changes: 0 additions & 25 deletions
25
community/19.0.0.6/javaee8/java8/ibmsfj/helpers/runtime/docker-server.sh
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
community/19.0.0.6/kernel/java8/ibmsfj/helpers/runtime/docker-server.sh
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
community/19.0.0.6/webProfile8/java8/ibmsfj/helpers/runtime/docker-server.sh
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
...6/javaee7/java8/ibmsfj/Dockerfile.ubi-min → ...9/javaee7/java8/ibmsfj/Dockerfile.ubi-min
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
FROM open-liberty:19.0.0.6-kernel-ubi-min | ||
ENV KEYSTORE_REQUIRED "true" | ||
FROM open-liberty:19.0.0.9-kernel-ubi-min | ||
|
||
RUN cp /opt/ol/wlp/templates/servers/javaee7/server.xml /config/server.xml |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
community/19.0.0.9/javaee8/java8/ibmsfj/helpers/build/configuration_snippets/keystore.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<server description="Default Server"> | ||
<keyStore id="defaultKeyStore" password="REPLACE" /> | ||
</server> |
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
community/19.0.0.9/javaee8/java8/ibmsfj/helpers/build/configuration_snippets/tls.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<server description="Default Server"> | ||
<featureManager> | ||
<feature>transportSecurity-1.0</feature> | ||
</featureManager> | ||
</server> |
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
29 changes: 29 additions & 0 deletions
29
community/19.0.0.9/javaee8/java8/ibmsfj/helpers/runtime/docker-server.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
SNIPPETS_SOURCE=/opt/ol/helpers/build/configuration_snippets | ||
SNIPPETS_TARGET_DEFAULTS=/config/configDropins/defaults | ||
SNIPPETS_TARGET_OVERRIDES=/config/configDropins/overrides | ||
|
||
keystorePath="$SNIPPETS_TARGET_DEFAULTS/keystore.xml" | ||
|
||
if [ "$SSL" = "true" ] || [ "$TLS" = "true" ] | ||
then | ||
cp $SNIPPETS_SOURCE/tls.xml $SNIPPETS_TARGET_OVERRIDES/tls.xml | ||
fi | ||
|
||
if [ "$SSL" != "false" ] && [ "$TLS" != "false" ] | ||
then | ||
if [ ! -e $keystorePath ] | ||
then | ||
# Generate the keystore.xml | ||
export KEYSTOREPWD=$(openssl rand -base64 32) | ||
sed -i.bak "s|REPLACE|$KEYSTOREPWD|g" $SNIPPETS_SOURCE/keystore.xml | ||
cp $SNIPPETS_SOURCE/keystore.xml $SNIPPETS_TARGET_DEFAULTS/keystore.xml | ||
fi | ||
fi | ||
|
||
|
||
# Pass on to the real server run | ||
exec "$@" |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
community/19.0.0.9/kernel/java8/ibmsfj/helpers/build/configuration_snippets/keystore.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<server description="Default Server"> | ||
<keyStore id="defaultKeyStore" password="REPLACE" /> | ||
</server> |
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
community/19.0.0.9/kernel/java8/ibmsfj/helpers/build/configuration_snippets/tls.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<server description="Default Server"> | ||
<featureManager> | ||
<feature>transportSecurity-1.0</feature> | ||
</featureManager> | ||
</server> |
Oops, something went wrong.