This commit is contained in:
Heather Morris 2025-10-30 17:23:46 +00:00 committed by GitHub
commit a193eac7b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 8 deletions

View File

@ -4,8 +4,10 @@ services:
image: ghcr.io/dockur/windows image: ghcr.io/dockur/windows
environment: environment:
RAM_SIZE: "half" RAM_SIZE: "half"
DISK_SIZE: "max" DISK_SIZE: "256G"
CPU_CORES: "max" CPU_CORES: "max"
USERNAME: "Heather"
PASSWORD: "heather"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/net/tun - /dev/net/tun

View File

@ -1,8 +1,8 @@
{ {
"name": "Windows 11 Pro", "name": "Windows 10 Pro",
"service": "windows", "service": "windows",
"containerEnv": { "containerEnv": {
"VERSION": "11" "VERSION": "10"
}, },
"forwardPorts": [8006], "forwardPorts": [8006],
"portsAttributes": { "portsAttributes": {

View File

@ -38,9 +38,11 @@ RUN echo "$VERSION_ARG" > /run/version
VOLUME /storage VOLUME /storage
EXPOSE 3389 8006 EXPOSE 3389 8006
ENV VERSION="11" ENV VERSION="10pro"
ENV RAM_SIZE="4G" ENV RAM_SIZE="4G"
ENV CPU_CORES="2" ENV CPU_CORES="2"
ENV DISK_SIZE="64G" ENV DISK_SIZE="256G"
ENV USERNAME="Heather"
ENV PASSWORD="heather"
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"] ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]

View File

@ -3,7 +3,12 @@ services:
image: dockurr/windows image: dockurr/windows
container_name: windows container_name: windows
environment: environment:
VERSION: "11" VERSION: "10pro"
RAM_SIZE: "4G"
CPU_CORES: "2"
DISK_SIZE: "256G"
USERNAME: "Heather"
PASSWORD: "heather"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/net/tun - /dev/net/tun