From dfe0b23995f052a3d03d58de991310239ab74015 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 15 Oct 2025 23:58:01 +0200 Subject: [PATCH] feat: Improve Github Codespaces configuration (#1069) --- .devcontainer.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index e195b64..35773bc 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,6 +1,20 @@ { - "name": "dsm", + "name": "Virtual DSM", "service": "dsm", - "forwardPorts": [5000], + "containerEnv": { + "RAM_SIZE": "max", + "DISK_SIZE": "max", + "CPU_CORES": "max" + }, + "forwardPorts": [5000], + "portsAttributes": { + "5000": { + "label": "Web", + "onAutoForward": "openBrowser" + } + }, + "otherPortsAttributes": { + "onAutoForward": "silent" + }, "dockerComposeFile": ".github/codespaces.yml" }