mirror of
https://github.com/dockur/windows.git
synced 2026-02-04 07:59:43 +00:00
Merge 529f7daa53 into 1a6a2dbad0
This commit is contained in:
commit
a193eac7b6
4 changed files with 17 additions and 8 deletions
|
|
@ -4,8 +4,10 @@ services:
|
|||
image: ghcr.io/dockur/windows
|
||||
environment:
|
||||
RAM_SIZE: "half"
|
||||
DISK_SIZE: "max"
|
||||
DISK_SIZE: "256G"
|
||||
CPU_CORES: "max"
|
||||
USERNAME: "Heather"
|
||||
PASSWORD: "heather"
|
||||
devices:
|
||||
- /dev/kvm
|
||||
- /dev/net/tun
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "Windows 11 Pro",
|
||||
"name": "Windows 10 Pro",
|
||||
"service": "windows",
|
||||
"containerEnv": {
|
||||
"VERSION": "11"
|
||||
"VERSION": "10"
|
||||
},
|
||||
"forwardPorts": [8006],
|
||||
"forwardPorts": [8006],
|
||||
"portsAttributes": {
|
||||
"8006": {
|
||||
"label": "Web",
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
},
|
||||
"otherPortsAttributes": {
|
||||
"onAutoForward": "ignore"
|
||||
},
|
||||
},
|
||||
"dockerComposeFile": "codespaces.yml",
|
||||
"workspaceFolder": "/workspaces/windows",
|
||||
"initializeCommand": "docker system prune --all --force"
|
||||
|
|
|
|||
|
|
@ -38,9 +38,11 @@ RUN echo "$VERSION_ARG" > /run/version
|
|||
VOLUME /storage
|
||||
EXPOSE 3389 8006
|
||||
|
||||
ENV VERSION="11"
|
||||
ENV VERSION="10pro"
|
||||
ENV RAM_SIZE="4G"
|
||||
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"]
|
||||
|
|
|
|||
|
|
@ -3,7 +3,12 @@ services:
|
|||
image: dockurr/windows
|
||||
container_name: windows
|
||||
environment:
|
||||
VERSION: "11"
|
||||
VERSION: "10pro"
|
||||
RAM_SIZE: "4G"
|
||||
CPU_CORES: "2"
|
||||
DISK_SIZE: "256G"
|
||||
USERNAME: "Heather"
|
||||
PASSWORD: "heather"
|
||||
devices:
|
||||
- /dev/kvm
|
||||
- /dev/net/tun
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue