Last active
July 20, 2020 17:37
-
-
Save pahud/519e2da8ad9496cebe46c3494d11ce45 to your computer and use it in GitHub Desktop.
devcontainer.json for aws/aws-cdk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// 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.128.0/containers/docker-from-docker | |
{ | |
// "name": "Docker from Docker", | |
// "dockerFile": "Dockerfile", | |
"name": "jsii", | |
"image": "jsii/superchain", | |
"mounts": [ | |
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" | |
], | |
// Set *default* container specific settings.json values on container create. | |
"settings": { | |
"terminal.integrated.shell.linux": "/bin/bash" | |
}, | |
// Add the IDs of extensions you want installed when the container is created. | |
"extensions": [ | |
"ms-azuretools.vscode-docker" | |
] | |
// Use 'forwardPorts' to make a list of ports inside the container available locally. | |
// "forwardPorts": [], | |
// Use 'postCreateCommand' to run commands after the container is created. | |
//"postCreateCommand": "yarn install && yarn build --skip-test", | |
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust | |
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], | |
// Uncomment the next two lines to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. | |
// "overrideCommand": false, | |
// "remoteUser": "vscode" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment