hugo docker & docker-compose ok

This commit is contained in:
2021-07-24 10:36:26 +02:00
parent ae79133b69
commit c9cf197d56
7 changed files with 98 additions and 60 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM nginx:alpine
COPY ./public /var/www/html
# Literally copy nginx.conf file from the Dockerfile directory into /etc/nginx/conf.d/default.conf of the container
COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80