Created
March 13, 2017 19:07
-
-
Save gschueler/c2ccb522203b8c6e281b782199a827d9 to your computer and use it in GitHub Desktop.
rundeck ubuntu 16.04
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 ubuntu:16.04 | |
RUN apt-get -y update && \ | |
apt-get -y install openjdk-8-jdk apt-transport-https curl openssh-client uuid-runtime | |
ENV RDECK_BASE=/var/lib/rundeck | |
RUN mkdir $RDECK_BASE | |
RUN echo "deb https://rundeck.bintray.com/rundeck-deb /" | tee -a /etc/apt/sources.list | |
RUN curl "https://bintray.com/user/downloadSubjectPublicKey?username=bintray" > /tmp/bintray.gpg.key | |
RUN apt-key add - < /tmp/bintray.gpg.key | |
RUN apt-get -y update | |
RUN apt-get -y --allow-unauthenticated install rundeck |
Author
gschueler
commented
Mar 13, 2017
@gschueler why not put this on official install documentation in Rundeck? I tested this on EC2 and worked fine.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment