28 lines
650 B
JSON
28 lines
650 B
JSON
{
|
|
"name": "Test postCreateCommand",
|
|
"image": "mcr.microsoft.com/devcontainers/universal:linux",
|
|
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/zsh",
|
|
},
|
|
|
|
// Visual Studio Code extensions which help authoring for docs.github.com.
|
|
"extensions": [
|
|
"dbaeumer.vscode-eslint",
|
|
"sissel.shopify-liquid"
|
|
],
|
|
|
|
"hostRequirements": {
|
|
"cpus": 8,
|
|
"memory": "8gb",
|
|
"storage": "32gb"
|
|
},
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [5000],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand": "echo test > aaa-TEST.txt"
|
|
|
|
}
|