From 1a598aa15aa4fdb7f82ebd0f61be6b92c2f18aba Mon Sep 17 00:00:00 2001 From: bamurtaugh Date: Mon, 19 Apr 2021 08:43:13 -0700 Subject: [PATCH] Update comments --- .devcontainer/devcontainer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e96e675..8b697f9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -41,8 +41,7 @@ // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [9000], - // Use 'portsAttributes' to set default properties for specific forwarded ports. - // You can use a port number (i.e. 3000), range of numbers, or a regex to match the running process. + // Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference. "portsAttributes": { "9000": { "label": "Hello Remote World", @@ -58,6 +57,6 @@ // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip3 install -r requirements.txt", - // Comment out to connect as root instead. + // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "vscode" }