Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix for Windows configs
pcaskey committed May 21, 2018
1 parent eeda698 commit dc368ea
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions configBuilder.sh 100644 → 100755
@@ -555,6 +555,18 @@ EOF

fi

if [ ${USESECRETS} == "YES" ] && [ ${BUILD_ENV} == "WINDOWS" ]; then
echo "Configuring Dockerfile for use of secrets in a Windows container."

mv -f Dockerfile Dockerfile.setup
cat <<EOF > docker_edit.sed
s/^#!# RUN /RUN /
EOF
rm -f Dockerfile
sed -f docker_edit.sed Dockerfile.setup > Dockerfile
rm -f Dockerfile.setup
rm -f docker_edit.sed
fi

# configure SSL keystore password in tomcat's config file:
# conf/tomcat/server.xml replace: keystorePass="password"

0 comments on commit dc368ea

Please sign in to comment.