Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Last active January 21, 2021 08:44
Show Gist options
  • Save v-thomp4/8b651e4b95afddd74f0d34027d4c9f9c to your computer and use it in GitHub Desktop.
Save v-thomp4/8b651e4b95afddd74f0d34027d4c9f9c to your computer and use it in GitHub Desktop.
jenkins ldaps
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
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