From 6f91baa53833d81bb5e18e9b713fbc68c06f626e Mon Sep 17 00:00:00 2001 From: Luca Sacchi Ricciardi Date: Thu, 23 Apr 2026 17:48:55 +0200 Subject: [PATCH] chore: set web port to 8380 and ignore vscode settings --- .gitignore | 1 + README.md | 2 +- docker-compose.yml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d74e21 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/ diff --git a/README.md b/README.md index 89788cb..cce6325 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ docker compose up -d La pagina sarĂ  disponibile su: -- `http://localhost:8080` +- `http://localhost:8380` Stop: diff --git a/docker-compose.yml b/docker-compose.yml index fd709a4..1bb5509 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: image: nginx:alpine container_name: home-lucasacchi-web ports: - - "8080:80" + - "8380:80" volumes: - ./index.html:/usr/share/nginx/html/index.html:ro restart: unless-stopped