Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brian-lim-42/f7aa25b9a064536bf2cf45cfea50841d to your computer and use it in GitHub Desktop.
Save brian-lim-42/f7aa25b9a064536bf2cf45cfea50841d to your computer and use it in GitHub Desktop.
#
# nginx simple Dockerfile
#
# Pull base image.
FROM ubuntu
# Install Nginx.
RUN \
apt-get update && \
apt-get install -y nginx && \
rm -rf /var/lib/apt/lists/* && \
echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \
chown -R www-data:www-data /var/lib/nginx
# Define mountable directories.
VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d","/var/log/nginx", "/var/www/html"]
# Define working directory.
WORKDIR /etc/nginx
# Define default command.
CMD ["nginx"]
# Expose ports.
EXPOSE 80
#
# nginx simple Dockerfile
#
# Pull base image.
FROM ubuntu...
# Define default command.
CMD ["nginx"]
# Expose ports.
EXPOSE 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment