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

feat: Improve Github Codespaces configuration (#1082)

parent 39924388
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
services:
  dsm:
    container_name: dsm
    image: vdsm/virtual-dsm
    image: ghcr.io/vdsm/virtual-dsm
    environment:
      ALLOCATE: "Y"
      RAM_SIZE: "half"
      DISK_SIZE: "max"
      CPU_CORES: "max"
+3 −6
Original line number Diff line number Diff line
{
  "name": "Virtual DSM",
  "service": "dsm",
  "containerEnv": {
    "ALLOCATE": "Y"
  },  
  "forwardPorts": [5000],  
  "service": "vdsm",
  "portsAttributes": {
    "5000": {
      "label": "Web",
      "onAutoForward": "openBrowser"
      "onAutoForward": "notify"
    }
  },
  "otherPortsAttributes": {
    "onAutoForward": "ignore"
  }, 
  "dockerComposeFile": "codespaces.yml",
  "workspaceFolder": "/workspaces/vdsm",
  "initializeCommand": "docker system prune --all --force"
}