Update to 0.134.0 verison of definition

This commit is contained in:
Chuck Lantz
2020-08-11 13:21:43 -07:00
parent d9346f06ae
commit 805fc6e3af
2 changed files with 16 additions and 53 deletions

View File

@@ -1,11 +1,13 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/php
{
"name": "PHP Sample",
"name": "PHP",
"build": {
"dockerfile": "Dockerfile",
"args": {
// Update VARIANT to pick a PHP version
// Update VARIANT to pick a PHP version: 7, 7.4, 7.3
"VARIANT": "7",
"INSTALL_NODE": "true",
"INSTALL_NODE": "false",
"NODE_VERSION": "lts/*"
}
},
@@ -27,6 +29,6 @@
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "php -v",
// Comment out to use the root user instead. See https://aka.ms/vscode-remote/containers/non-root.
// Comment out to connect as root instead.
"remoteUser": "vscode"
}