Fotogalerie mit CSS Columns Masonry - alle 12 Bilder eingebaut

This commit is contained in:
2026-05-10 01:47:00 +02:00
commit 5d1a048624
27 changed files with 998 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:alpine
# Eigene Nginx-Konfiguration kopieren
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Website-Dateien werden per Volume-Mount eingebunden
# Siehe: docker run -v ...
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]