Skip to content

Instantly share code, notes, and snippets.

@KAllan357
Created July 8, 2014 00:08
Show Gist options
  • Save KAllan357/6be580a1ff96950e10fb to your computer and use it in GitHub Desktop.
Save KAllan357/6be580a1ff96950e10fb to your computer and use it in GitHub Desktop.
FROM ubuntu:14.04
MAINTAINER Kyle Allan "kallan357@gmail.com"
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