Created
July 8, 2014 00:08
-
-
Save KAllan357/6be580a1ff96950e10fb to your computer and use it in GitHub Desktop.
This file contains 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:14.04 | |
MAINTAINER Kyle Allan "[email protected]" | |
RUN apt-get update && apt-get install wget -y && apt-get install openjdk-7-jre-headless -y | |
WORKDIR /tmp | |
RUN wget http://www.sonatype.org/downloads/nexus-2.8.1-bundle.tar.gz | |
RUN tar xzvf nexus-2.8.1-bundle.tar.gz -C / | |
RUN rm -rf nexus-2.8.1-bundle.tar.gz | |
VOLUME ["/nexus-2.8.1-01/logs", "/sonatype-work"] | |
EXPOSE 8081 | |
WORKDIR /nexus-2.8.1-01/bin | |
ENV RUN_AS_USER root | |
CMD ["./nexus", "console"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment