1
0
mirror of synced 2025-12-25 11:03:37 -05:00
Files
docs/.devcontainer/test-custom-devcontainer/devcontainer.json
2023-01-25 14:22:06 +00:00

28 lines
632 B
JSON

{
"name": "test",
"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"
}