From a958b002df0586955d0dae235562f96442ba4722 Mon Sep 17 00:00:00 2001 From: cirolosapio-accenture <118544403+cirolosapio-accenture@users.noreply.github.com> Date: Fri, 15 Mar 2024 10:04:01 +0100 Subject: [PATCH] update --- .devcontainer/compose.yml | 6 +++--- .devcontainer/devcontainer.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/compose.yml b/.devcontainer/compose.yml index d9cc39e..d248a90 100644 --- a/.devcontainer/compose.yml +++ b/.devcontainer/compose.yml @@ -1,7 +1,7 @@ services: nginx: - image: nginx:1.25.3-alpine3.18-slim - ports: [ 8080:80 ] + image: nginx:1.25.4-alpine3.18-slim + ports: [ 80:80 ] volumes: - ..:/var/www/html:ro - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro @@ -9,7 +9,7 @@ services: - mariadb php: - image: cirolosapio/php-fpm:8.1.27-alpine3.19-composer2.7.1-xdebug3.3.1-mysql-zip + image: cirolosapio/php-fpm:8.1.27-alpine3.19-composer2.7.2-xdebug3.3.1-mysql-zip volumes: - ..:/var/www/html:cached # - ~/.ssh:/home/php/.ssh:rw diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 843b510..34771e1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,13 +6,13 @@ "nginx" ], "portsAttributes": { - "8080": { + "80": { "label": "Application", "onAutoForward": "openBrowserOnce" } }, "forwardPorts": [ - 8080 + 80 ], "features": { "ghcr.io/cirolosapio/devcontainers-features/alpine-starship:0": {},