diff --git a/.devcontainer.json b/.devcontainer.json index 3d8577f..14d70b4 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,24 +1,6 @@ { - "name": "Windows 11 Pro", + "name": "windows", "service": "windows", - "containerEnv": { - "VERSION": "11", - "RAM_SIZE": "max", - "DISK_SIZE": "max", - "CPU_CORES": "max" - }, - "forwardPorts": [8006], - "portsAttributes": { - "8006": { - "label": "Web", - "onAutoForward": "openBrowser" - } - }, - "otherPortsAttributes": { - "onAutoForward": "silent" - }, - "hostRequirements": { - "storage": "64gb" - }, - "dockerComposeFile": ".github/codespaces.yml" + "forwardPorts": [8006], + "dockerComposeFile": "compose.yml" } diff --git a/.github/codespaces.yml b/.github/codespaces.yml deleted file mode 100644 index 7aaba65..0000000 --- a/.github/codespaces.yml +++ /dev/null @@ -1,22 +0,0 @@ -services: - windows: - image: dockurr/windows - container_name: windows - environment: - VERSION: "11" - RAM_SIZE: "max" - DISK_SIZE: "max" - CPU_CORES: "max" - devices: - - /dev/kvm - - /dev/net/tun - cap_add: - - NET_ADMIN - ports: - - 8006:8006 - - 3389:3389/tcp - - 3389:3389/udp - volumes: - - ./windows:/storage - restart: on-failure - stop_grace_period: 2m