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

View File

@ -1,8 +1,8 @@
{ {
"name": "Windows 11 Pro", "name": "Windows 10 Pro",
"service": "windows", "service": "windows",
"containerEnv": { "containerEnv": {
"VERSION": "11" "VERSION": "10pro"
}, },
"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="10pro"
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,12 @@ services:
image: dockurr/windows image: dockurr/windows
container_name: windows container_name: windows
environment: environment:
VERSION: "11" VERSION: "10"
RAM_SIZE: "4G"
CPU_CORES: "2"
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: "10pro"
- name: DISK_SIZE - name: DISK_SIZE
value: "64G" value: "250G"
ports: ports:
- containerPort: 8006 - containerPort: 8006
name: http name: http