From 23656235bc7684dc0385f0286e6a6ac667e4f540 Mon Sep 17 00:00:00 2001 From: Chuck Lantz Date: Mon, 26 Aug 2019 14:00:50 -0700 Subject: [PATCH] Update comments --- .devcontainer/devcontainer.json | 35 +++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c9fb8a9..9decd5d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,15 +1,24 @@ { - "name": "Node.js Sample", - "dockerFile": "Dockerfile", - "appPort": 3000, - "extensions": [ - "dbaeumer.vscode-eslint" - ], - "settings": { - "terminal.integrated.shell.linux": "/bin/bash" - }, - "postCreateCommand": "yarn install", - // Comment out the next line to run as root instead. Linux users, update - // Dockerfile with your user's UID/GID if not 1000. - "runArgs": [ "-u", "node" ] + "name": "Node.js Sample", + "dockerFile": "Dockerfile", + + // Specifies a list of ports that should be published. + "appPort": [3000], + + // Comment out the next line to run as root instead. Linux users, update + // Dockerfile with your user's UID/GID if not 1000. + "runArgs": [ "-u", "node" ], + + // Use 'settings' to set *default* container specific settings.json values on container create. + // You can edit these settings after create using File > Preferences > Settings > Remote. + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + + // Specifies a command that should be run after the container has been created. + "postCreateCommand": "yarn install", + + "extensions": [ + "dbaeumer.vscode-eslint" + ] } \ No newline at end of file