Update comments

This commit is contained in:
bamurtaugh
2021-04-19 08:43:13 -07:00
parent a8a25f8a10
commit 1a598aa15a

View File

@@ -41,8 +41,7 @@
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [9000], // "forwardPorts": [9000],
// Use 'portsAttributes' to set default properties for specific forwarded ports. // Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference.
// You can use a port number (i.e. 3000), range of numbers, or a regex to match the running process.
"portsAttributes": { "portsAttributes": {
"9000": { "9000": {
"label": "Hello Remote World", "label": "Hello Remote World",
@@ -58,6 +57,6 @@
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip3 install -r requirements.txt", "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" "remoteUser": "vscode"
} }