From 128df3184028e371f931169dd99390b5bd6951e1 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Thu, 26 Mar 2026 12:36:52 +0100 Subject: [PATCH 1/3] Aggiunta dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e896d42 --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file From 1233d7b441027ef80c307b7076d3695eafed2a83 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Thu, 26 Mar 2026 12:38:12 +0100 Subject: [PATCH 2/3] Aggiunto docker compose di esempio --- docker-compose.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3d46339 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + simulator: + image: dicampi-raid-sim:latest + ports: + - 10469:80 + restart: unless-stopped + network_mode: bridge \ No newline at end of file From ecee75af4aa49bb316dcae09e17a4c9585ea0a22 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Thu, 26 Mar 2026 12:38:36 +0100 Subject: [PATCH 3/3] Cambio porta host nel docker-compose di esempio --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3d46339..e3e4da7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,6 @@ services: simulator: image: dicampi-raid-sim:latest ports: - - 10469:80 + - 8080:80 restart: unless-stopped network_mode: bridge \ No newline at end of file