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

feat: Add custom .yml for Github Codespaces

parent 4d225aca
Loading
Loading
Loading
Loading

.github/codespaces.yml

0 → 100644
+20 −0
Original line number Diff line number Diff line
services:
  qemu:
    image: qemux/qemu
    container_name: qemu
    environment:
      BOOT: "mint"
      RAM_SIZE: "max"
      DISK_SIZE: "max"
      CPU_CORES: "max"
    devices:
      - /dev/kvm
      - /dev/net/tun
    cap_add:
      - NET_ADMIN
    ports:
      - 8006:8006
    volumes:
      - ./qemu:/storage
    restart: always
    stop_grace_period: 2m