diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index dc5160f..064788c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -18,13 +18,12 @@ }, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [ - 8080 + 8000 ], "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html", - // Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference. "portsAttributes": { - "8080": { - "label": "Apache Server", + "8000": { + "label": "PHP Artisan Serve", "onAutoForward": "notify" } }