diff --git a/.devcontainer/codespaces.yml b/.devcontainer/codespaces.yml index 85e3f64..8a88acd 100644 --- a/.devcontainer/codespaces.yml +++ b/.devcontainer/codespaces.yml @@ -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 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d7c98a8..e701f5d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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" diff --git a/Dockerfile b/Dockerfile index bf6dab2..2bb5ef4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/compose.yml b/compose.yml index e5b6257..a86e0c6 100644 --- a/compose.yml +++ b/compose.yml @@ -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