Unverified Commit ab457abc authored by Kroese's avatar Kroese Committed by GitHub
Browse files

feat: Add custom .yml for Github Codespaces (#1486)

parent 70dce80a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@
  "name": "windows",
  "service": "windows",
  "forwardPorts": [8006],
  "dockerComposeFile": "compose.yml"
  "dockerComposeFile": ".github/codespaces.yml"
}

.github/codespaces.yml

0 → 100644
+22 −0
Original line number Diff line number Diff line
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