From 91434ccffee14c7786c059f7801da71e9f049758 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:30:29 -0400 Subject: [PATCH 1/7] Modify Windows container settings in compose.yml Updated Windows container configuration with new version and resource settings. --- compose.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index e5b6257..a267299 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,12 @@ services: image: dockurr/windows container_name: windows environment: - VERSION: "11" + VERSION: "10pro" + RAM_SIZE: "4G" +CPU_CORES: "2" +DISK_SIZE: "256G" +USERNAME: "Heather" +PASSWORD: "heather" devices: - /dev/kvm - /dev/net/tun From 205e938ce9360999673a41a72f5bd8502ea5f9f2 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:33:04 -0400 Subject: [PATCH 2/7] Update Windows version in compose.yml --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index a267299..b97f64a 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ services: image: dockurr/windows container_name: windows environment: - VERSION: "10pro" + VERSION: "10" RAM_SIZE: "4G" CPU_CORES: "2" DISK_SIZE: "256G" From 0ae4c2a19b8ef8e6d6b600dfe71ea4a5c1748eb9 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:46:52 -0400 Subject: [PATCH 3/7] Update Dockerfile environment variables --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf6dab2..b316f13 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="10pro" 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 15c4f3996c0fec9a926cd22058d749b7d0a81ca1 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:47:24 -0400 Subject: [PATCH 4/7] Change DISK_SIZE from 256G to 250G --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index b97f64a..5e46179 100644 --- a/compose.yml +++ b/compose.yml @@ -6,7 +6,7 @@ services: VERSION: "10" RAM_SIZE: "4G" CPU_CORES: "2" -DISK_SIZE: "256G" +DISK_SIZE: "250G" USERNAME: "Heather" PASSWORD: "heather" devices: From 51290177460fca66716a8fa47ec5e0f539e33ea0 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:48:37 -0400 Subject: [PATCH 5/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..f27b22c 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": "10pro" }, "forwardPorts": [8006], "portsAttributes": { From 546d0ed9bf44ed1b39c5de07926d6ab205413943 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:56:16 -0400 Subject: [PATCH 6/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..847966e 100644 --- a/kubernetes.yml +++ b/kubernetes.yml @@ -31,9 +31,9 @@ spec: image: dockurr/windows env: - name: VERSION - value: "11" + value: "10pro" - name: DISK_SIZE - value: "64G" + value: "250G" ports: - containerPort: 8006 name: http From 4fbbcfbbf91db13e3252acad1c112fc7bcafcec7 Mon Sep 17 00:00:00 2001 From: Heather Morris <148032633+hmorris1990@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:11:20 -0400 Subject: [PATCH 7/7] Fix formatting of environment variables in compose.yml --- compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yml b/compose.yml index 5e46179..71d4398 100644 --- a/compose.yml +++ b/compose.yml @@ -5,10 +5,10 @@ services: environment: VERSION: "10" RAM_SIZE: "4G" -CPU_CORES: "2" -DISK_SIZE: "250G" -USERNAME: "Heather" -PASSWORD: "heather" + CPU_CORES: "2" + DISK_SIZE: "250G" + USERNAME: "Heather" + PASSWORD: "heather" devices: - /dev/kvm - /dev/net/tun