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 7158f22..c3d8e68 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": {},