Last active
January 21, 2021 08:44
-
-
Save v-thomp4/8b651e4b95afddd74f0d34027d4c9f9c to your computer and use it in GitHub Desktop.
jenkins ldaps
This file contains hidden or 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
FROM jenkins/jenkins:lts | |
USER root | |
ENV JAVA_OPTS -Djenkins.install.runSetupWizard=false | |
COPY plugins.txt /usr/share/jenkins/ref/plugins.txt | |
RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt | |
COPY ldap.cer $JAVA_HOME/jre/lib/security/ | |
RUN \ | |
cd $JAVA_HOME/jre/lib/security \ | |
&& keytool -keystore cacerts -storepass changeit -noprompt -trustcacerts -importcert -alias ldapcert -file ldap.cer |
This file contains hidden or 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
active-directory | |
display-url-api | |
ldap | |
mailer | |
matrix-auth | |
role-strategy | |
trilead-api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment