diff --git a/.devcontainer.json b/.devcontainer.json index e195b64..4ffcc8f 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,6 +1,20 @@ { - "name": "dsm", + "name": "Virtual DSM", "service": "dsm", - "forwardPorts": [5000], - "dockerComposeFile": ".github/codespaces.yml" + "containerEnv": { + "RAM_SIZE": "max", + "DISK_SIZE": "max", + "CPU_CORES": "max" + }, + "forwardPorts": [5000], + "portsAttributes": { + "5000": { + "label": "Web", + "onAutoForward": "openBrowser" + } + }, + "otherPortsAttributes": { + "onAutoForward": "silent" + }, + "dockerComposeFile": "compose.yml" }