Kubernetes, GitOps & Observability — all at home.
++ DvirLabs is a personal infrastructure lab used for experimenting with + Kubernetes, CI/CD, monitoring, security, and cloud-native tooling — running + fully on self-hosted hardware. +
+ +diff --git a/Dockerfile b/Dockerfile
index eaee210..b792b32 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,13 +1,12 @@
-# Dockerfile
FROM nginx:1.27-alpine
-# Remove default nginx index
RUN rm -rf /usr/share/nginx/html/*
-# Copy your static landing page
+# index.html כמו שהוא היום
COPY index.html /usr/share/nginx/html/index.html
-# Optional: basic security / best practice
-EXPOSE 80
+# סקריפט שמחליף placeholders לפי ENV
+COPY docker-entrypoint.sh /docker-entrypoint.sh
+RUN chmod +x /docker-entrypoint.sh
-CMD ["nginx", "-g", "daemon off;"]
+CMD ["/docker-entrypoint.sh"]
diff --git a/index.html b/index.html
index 9026983..929237e 100644
--- a/index.html
+++ b/index.html
@@ -373,6 +373,413 @@
+
+ DvirLabs is a personal infrastructure lab used for experimenting with
+ Kubernetes, CI/CD, monitoring, security, and cloud-native tooling — running
+ fully on self-hosted hardware.
+ Kubernetes, GitOps & Observability — all at home.
+