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

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

parent d3c2d448
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@
  "name": "macos",
  "service": "macos",
  "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:
  macos:
    image: dockurr/macos
    container_name: macos
    environment:
      VERSION: "14"
      RAM_SIZE: "max"
      DISK_SIZE: "max"
      CPU_CORES: "max"
    devices:
      - /dev/kvm
      - /dev/net/tun
    cap_add:
      - NET_ADMIN
    ports:
      - 8006:8006
      - 5900:5900/tcp
      - 5900:5900/udp
    volumes:
      - ./macos:/storage
    restart: on-failure
    stop_grace_period: 2m