Skip to content

Instantly share code, notes, and snippets.

@gschueler
Created March 13, 2017 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gschueler/c2ccb522203b8c6e281b782199a827d9 to your computer and use it in GitHub Desktop.
Save gschueler/c2ccb522203b8c6e281b782199a827d9 to your computer and use it in GitHub Desktop.
rundeck ubuntu 16.04
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
@joubertredrat
Copy link

@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