docker setup

This commit is contained in:
2026-07-02 15:08:55 +02:00
commit 2c6eda0db9
17 changed files with 337 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM nginx:latest
WORKDIR /etc/nginx
COPY /docker/nginx/default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]