-
Notifications
You must be signed in to change notification settings - Fork 6
/
devcontainer.json
42 lines (36 loc) · 1.52 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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/alpine
{
"name": "Terraform and Azure CLI 2.0",
"build": {
"dockerfile": "Dockerfile"
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh",
// dotfiles
"dotfiles.repository": "hoisjp/terraform-azure-ghactions-examples",
"dotfiles.targetPath": "~/.devcontainer/dotfiles",
"dotfiles.installCommand": "~/.devcontainer/dotfiles/install.sh",
// Files
"files.eol": "\n",
},
// Add the IDs of extensions you want installed when the container is created.
// Note that some extensions may not work in Alpine Linux. See https://aka.ms/vscode-remote/linux.
"extensions": [
"ms-azuretools.vscode-azureterraform",
"hashicorp.terraform",
"github.vscode-pull-request-github",
"ms-azuretools.vscode-docker",
"ms-vscode.azure-account",
"ms-vscode.azurecli"
],
// 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": "uname -a",
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"
}