From dfa21f237b5b131c7fc0749ef668f5f0e1025673 Mon Sep 17 00:00:00 2001 From: djnsdfkfsdffsssssa Date: Fri, 5 Dec 2025 10:11:01 -0500 Subject: [PATCH] Modify Windows container settings in compose.yml Updated environment variables and resource limits for the Windows container. --- compose.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/compose.yml b/compose.yml index b3d1a4c..5e76b46 100644 --- a/compose.yml +++ b/compose.yml @@ -4,9 +4,9 @@ services: container_name: windows hostname: win11 environment: - VERSION: "2025" + VERSION: "11" USERNAME: "admin" - PASSWORD: "admin" + PASSWORD: "StrongPassword123!" devices: - /dev/kvm - /dev/net/tun @@ -24,16 +24,17 @@ services: resources: limits: cpus: "4" - memory: 100G + memory: 8G reservations: - cpus: "4" - memory: 100G + cpus: "2" + memory: 4G volumes: windows_data: driver: local driver_opts: - type: none - o: bind - device: ./windows - size: 6T # 1 terabyte quota + type: xfs + o: pquota + device: /var/lib/docker/volumes/windows_data + size: 2T # 2 terabyte quota +