From: Lorin Hochstein Date: Sun, 5 Feb 2017 01:44:36 +0000 (-0800) Subject: dockerfile for nginx X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=ec8ec326626a9e8a766efa4d154c15950dff64f6;p=ansiblebook.git dockerfile for nginx --- diff --git a/ch13/nginx/Dockerfile b/ch13/nginx/Dockerfile new file mode 100644 index 0000000..5c03486 --- /dev/null +++ b/ch13/nginx/Dockerfile @@ -0,0 +1,6 @@ +FROM nginx +RUN rm /etc/nginx/conf.d/default.conf +RUN rm /etc/nginx/conf.d/examplessl.conf +COPY ghost.conf /etc/nginx/conf.d/ghost.conf + +