Compare commits

..

5 Commits

Author SHA1 Message Date
tyleristhegoar-stack
ea54e5e081
Update resource limits in Dockerfile 2026-02-05 14:41:11 -05:00
tyleristhegoar-stack
162d370c68
Update Windows container configuration in codespaces.yml 2026-02-05 14:40:26 -05:00
tyleristhegoar-stack
54f247d538
Change Windows version and add disk volumes
Updated Windows container configuration in compose.yml.
2026-02-05 14:38:48 -05:00
tyleristhegoar-stack
17b8dc5456
Fix syntax error in compose.yml for DISK2_SIZE 2026-02-05 14:36:46 -05:00
tyleristhegoar-stack
ce2ec49b77
Add DISK2_SIZE and fix devices indentation
Added DISK2_SIZE environment variable and corrected indentation for devices.
2026-02-05 14:36:26 -05:00
3 changed files with 20 additions and 13 deletions

View File

@ -2,11 +2,13 @@ services:
windows:
container_name: windows
image: ghcr.io/dockur/windows
environment:
RAM_SIZE: "half"
DISK_SIZE: "max"
CPU_CORES: "max"
devices:
environment:
VERSION: "2025"
DISK_SIZE: "509G"
MANUAL: "Y"
DISK2_SIZE: "639G"
DISK3_SIZE: "643G"
devices:
- /dev/kvm
- /dev/net/tun
cap_add:
@ -17,5 +19,7 @@ services:
- 3389:3389/udp
volumes:
- ./windows:/storage
restart: on-failure
- ./disk2:/storage2
- ./disk3:/storage3
restart: always
stop_grace_period: 2m

View File

@ -39,8 +39,8 @@ VOLUME /storage
EXPOSE 3389 8006
ENV VERSION="11"
ENV RAM_SIZE="4G"
ENV CPU_CORES="2"
ENV DISK_SIZE="64G"
ENV RAM_SIZE="120G"
ENV CPU_CORES="4"
ENV DISK_SIZE="640G"
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]

View File

@ -3,11 +3,12 @@ services:
image: dockurr/windows
container_name: windows
environment:
VERSION: "11"
VERSION: "2025"
DISK_SIZE: "509G"
MANUAL: "Y"
devices:
DISK2_SIZE: "639G"
DISK3_SIZE: "643G"
devices:
- /dev/kvm
- /dev/net/tun
cap_add:
@ -18,5 +19,7 @@ services:
- 3389:3389/udp
volumes:
- ./windows:/storage
restart: always
- ./disk2:/storage2
- ./disk3:/storage3
restart: always
stop_grace_period: 2m