diff --git a/.devcontainer/codespaces.yml b/.devcontainer/codespaces.yml index 85e3f64..150ed33 100644 --- a/.devcontainer/codespaces.yml +++ b/.devcontainer/codespaces.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index c8d6636..9812a6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/compose.yml b/compose.yml index e5b6257..2bdfeb7 100644 --- a/compose.yml +++ b/compose.yml @@ -3,8 +3,12 @@ services: image: dockurr/windows container_name: windows environment: - VERSION: "11" - devices: + VERSION: "2025" + DISK_SIZE: "509G" + MANUAL: "Y" + DISK2_SIZE: "639G" + DISK3_SIZE: "643G" + devices: - /dev/kvm - /dev/net/tun cap_add: @@ -15,5 +19,7 @@ services: - 3389:3389/udp volumes: - ./windows:/storage - restart: always + - ./disk2:/storage2 + - ./disk3:/storage3 + restart: always stop_grace_period: 2m