From 32e23cda0bddc803829a285f0d78ab0f84fd98d0 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:54:57 -0400 Subject: [PATCH] Update devcontainer configuration for Windows 11 --- .devcontainer/devcontainer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c5a647b..d7c98a8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,10 +1,10 @@ { - "name": "Windows 10 Pro", + "name": "Windows 11 Pro", "service": "windows", "containerEnv": { - "VERSION": "10" + "VERSION": "11" }, - "forwardPorts": [8006], + "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", @@ -13,8 +13,8 @@ }, "otherPortsAttributes": { "onAutoForward": "ignore" - }, - "dockerComposeFile": "../codespaces.yml", + }, + "dockerComposeFile": "codespaces.yml", "workspaceFolder": "/workspaces/windows", "initializeCommand": "docker system prune --all --force" }