This commit is contained in:
Heather Morris 2025-10-30 18:07:33 +00:00 committed by GitHub
commit 1a33c556b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 12 deletions

View File

@ -1,11 +1,12 @@
services: services:
windows: windows:
image: dockurr/windows
container_name: windows container_name: windows
image: ghcr.io/dockur/windows
environment: environment:
RAM_SIZE: "half" VERSION: "10"
DISK_SIZE: "max" DISK_SIZE: "250G"
CPU_CORES: "max" USERNAME: "Heather"
PASSWORD: "heather"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/net/tun - /dev/net/tun
@ -17,5 +18,5 @@ services:
- 3389:3389/udp - 3389:3389/udp
volumes: volumes:
- ./windows:/storage - ./windows:/storage
restart: on-failure restart: always
stop_grace_period: 2m stop_grace_period: 2m

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,9 @@ RUN echo "$VERSION_ARG" > /run/version
VOLUME /storage VOLUME /storage
EXPOSE 3389 8006 EXPOSE 3389 8006
ENV VERSION="11" ENV VERSION="10"
ENV RAM_SIZE="4G" ENV RAM_SIZE="4G"
ENV CPU_CORES="2" ENV CPU_CORES="2"
ENV DISK_SIZE="64G" ENV DISK_SIZE="250G"
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"] ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]

View File

@ -3,7 +3,10 @@ services:
image: dockurr/windows image: dockurr/windows
container_name: windows container_name: windows
environment: environment:
VERSION: "11" VERSION: "10"
DISK_SIZE: "250G"
USERNAME: "Heather"
PASSWORD: "heather"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/net/tun - /dev/net/tun

View File

@ -31,9 +31,9 @@ spec:
image: dockurr/windows image: dockurr/windows
env: env:
- name: VERSION - name: VERSION
value: "11" value: "10"
- name: DISK_SIZE - name: DISK_SIZE
value: "64G" value: "250G"
ports: ports:
- containerPort: 8006 - containerPort: 8006
name: http name: http