docker-nexus/Dockerfile

19 lines
352 B
Docker
Raw Normal View History

2015-02-17 21:37:15 -08:00
FROM basessh
MAINTAINER Dave P
2015-03-21 11:29:34 -07:00
# Create nexus user
2015-02-17 21:37:15 -08:00
RUN useradd --create-home nexus ; \
echo "nexus:nexus" | chpasswd
2015-03-21 11:29:34 -07:00
# Install nginx
RUN apt-get install -y nginx-light
# Configure nginx
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
COPY nginx.conf /etc/supervisor/conf.d/nginx.conf
COPY default /etc/nginx/sites-available/default
EXPOSE 80
2015-02-17 21:37:15 -08:00