From ebfa7da61ac07a465427da770f5538a6c0dd5557 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:28:43 -0400 Subject: [PATCH 1/7] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf6dab2..49b915f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,9 +38,9 @@ RUN echo "$VERSION_ARG" > /run/version VOLUME /storage EXPOSE 3389 8006 -ENV VERSION="11" +ENV VERSION="10" ENV RAM_SIZE="4G" ENV CPU_CORES="2" -ENV DISK_SIZE="64G" +ENV DISK_SIZE="250G" ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"] From 2ada1eeee30de1957512da29e35404dce46406f3 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:29:59 -0400 Subject: [PATCH 2/7] Change Windows version to 10 and add user details Updated Windows container configuration to use version 10 and added disk size, username, and password. --- compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index e5b6257..0ef2b69 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,10 @@ services: image: dockurr/windows container_name: windows environment: - VERSION: "11" + VERSION: "10" + DISK_SIZE: "250G" + USERNAME: "Heather" + PASSWORD: "heather" devices: - /dev/kvm - /dev/net/tun From c07d78a8697d9fe73a919b88313e7b3bb729cdd2 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:30:35 -0400 Subject: [PATCH 3/7] Update Windows container version and disk size --- kubernetes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes.yml b/kubernetes.yml index fa8eef0..da84c10 100644 --- a/kubernetes.yml +++ b/kubernetes.yml @@ -31,9 +31,9 @@ spec: image: dockurr/windows env: - name: VERSION - value: "11" + value: "10" - name: DISK_SIZE - value: "64G" + value: "250G" ports: - containerPort: 8006 name: http From 56fc74b95c340e98c0ef66f0358756b22cb4320f Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:32:30 -0400 Subject: [PATCH 4/7] Change devcontainer name and version to Windows 10 --- .devcontainer/devcontainer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d7c98a8..c5a647b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,10 +1,10 @@ { - "name": "Windows 11 Pro", + "name": "Windows 10 Pro", "service": "windows", "containerEnv": { - "VERSION": "11" + "VERSION": "10" }, - "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" } 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 5/7] 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" } From 23d2b01f32edb4ba661871211c6a83af98ba8de2 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 14:06:32 -0400 Subject: [PATCH 6/7] Modify Windows service configuration in codespaces.yml Updated the Windows service configuration in codespaces.yml to use a new image and added environment variables for version, disk size, username, and password. --- .devcontainer/codespaces.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.devcontainer/codespaces.yml b/.devcontainer/codespaces.yml index 85e3f64..0ef2b69 100644 --- a/.devcontainer/codespaces.yml +++ b/.devcontainer/codespaces.yml @@ -1,11 +1,12 @@ services: windows: + image: dockurr/windows container_name: windows - image: ghcr.io/dockur/windows environment: - RAM_SIZE: "half" - DISK_SIZE: "max" - CPU_CORES: "max" + VERSION: "10" + DISK_SIZE: "250G" + USERNAME: "Heather" + PASSWORD: "heather" devices: - /dev/kvm - /dev/net/tun @@ -17,5 +18,5 @@ services: - 3389:3389/udp volumes: - ./windows:/storage - restart: on-failure + restart: always stop_grace_period: 2m From 9746ac544d3f440012d0ae5cc03628d754735ab5 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 14:07:30 -0400 Subject: [PATCH 7/7] Update devcontainer name and version to Windows 10 --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d7c98a8..cb7bad8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,8 +1,8 @@ { - "name": "Windows 11 Pro", + "name": "Windows 10 Pro", "service": "windows", "containerEnv": { - "VERSION": "11" + "VERSION": "10" }, "forwardPorts": [8006], "portsAttributes": {