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

feat: Added a Codespaces configuration for each distro (#915)

parent 25d4eb8b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
{
  "name": "QEMU",
  "name": "Alma Linux",
  "service": "qemu",
  "containerEnv": {
    "VERSION": "mint",
    "BOOT": "alma",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
@@ -17,5 +17,5 @@
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "dockerComposeFile": ".github/codespaces.yml"
  "dockerComposeFile": "../codespaces.yml"
}
+21 −0
Original line number Diff line number Diff line
{
  "name": "Alpine Linux",
  "service": "qemu",
  "containerEnv": {
    "BOOT": "alpine",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "dockerComposeFile": "../codespaces.yml"
}
+21 −0
Original line number Diff line number Diff line
{
  "name": "Arch Linux",
  "service": "qemu",
  "containerEnv": {
    "BOOT": "arch",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "dockerComposeFile": "../codespaces.yml"
}
+21 −0
Original line number Diff line number Diff line
{
  "name": "CachyOS",
  "service": "qemu",
  "containerEnv": {
    "BOOT": "cachy",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "dockerComposeFile": "../codespaces.yml"
}
+21 −0
Original line number Diff line number Diff line
{
  "name": "CentOS",
  "service": "qemu",
  "containerEnv": {
    "BOOT": "centos",
    "RAM_SIZE": "max",
    "DISK_SIZE": "max",
    "CPU_CORES": "max"    
  },  
  "forwardPorts": [8006],  
  "portsAttributes": {
    "8006": {
      "label": "Web",
      "onAutoForward": "openBrowser"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "silent"
  }, 
  "dockerComposeFile": "../codespaces.yml"
}
Loading