From 14a108a4ce8c33b3756860fb488f77868356530c Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 15 Oct 2025 23:51:49 +0200 Subject: [PATCH] feat: Improve Github Codespaces configuration --- .devcontainer.json | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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" }