4 Commits

Author SHA1 Message Date
AndreStork 3e21620d1b Merge branch 'docker' 2026-03-26 12:39:04 +01:00
AndreStork ecee75af4a Cambio porta host nel docker-compose di esempio 2026-03-26 12:38:36 +01:00
AndreStork 1233d7b441 Aggiunto docker compose di esempio 2026-03-26 12:38:12 +01:00
AndreStork 128df31840 Aggiunta dockerfile 2026-03-26 12:36:52 +01:00
2 changed files with 15 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM nginx
# Copia pagine HTML
COPY index.html /usr/share/nginx/html/index.html
COPY simulatore.html /usr/share/nginx/html/simulatore.html
COPY guida.html /usr/share/nginx/html/guida.html
EXPOSE 80
+7
View File
@@ -0,0 +1,7 @@
services:
simulator:
image: dicampi-raid-sim:latest
ports:
- 8080:80
restart: unless-stopped
network_mode: bridge