wrote steps to install docker in readme and wrote a dockerfile for nginx not tested

This commit is contained in:
hugo gogo
2022-08-29 16:08:56 +02:00
parent a602a5d772
commit f86988a54a
8 changed files with 183 additions and 55 deletions

View File

@@ -0,0 +1,11 @@
FROM debian:buster
RUN apt update && apt install -y nginx
COPY ./conf/nginx.conf /etc/nginx/
COPY ./conf/inception_nginx.conf /etc/nginx/conf.d/
COPY ./conf/index.html /data/www/
COPY ./conf/salade.jpeg /data/images/
CMD [ "nginx" ]