feat: add public services landing page and docker compose setup

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-23 17:36:18 +02:00
parent 0bb12429d7
commit b0eee358c9
3 changed files with 303 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
services:
web:
image: nginx:alpine
container_name: home-lucasacchi-web
ports:
- "8080:80"
volumes:
- ./index.html:/usr/share/nginx/html/index.html:ro
restart: unless-stopped