Skip to content
Snippets Groups Projects
Unverified Commit 8aaceffe authored by Michael T Lombardi (He/Him)'s avatar Michael T Lombardi (He/Him) Committed by GitHub
Browse files

Merge pull request #457 from da-ar/GH-445/main/remove-comments-devcontainer

(GH-445,456) devcontainer updates
parents bd3742cf 03377f2b
No related branches found
No related tags found
No related merge requests found
# devcontainer
For format details, see https://aka.ms/devcontainer.json.
For config options, see the README at:
https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
``` json
{
"name": "Puppet Development Kit (Community)",
"dockerFile": "Dockerfile",
// 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": [
"puppet.puppet-vscode",
"rebornix.Ruby"
]
// 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": "pdk --version",
}
```
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
{ {
"name": "Puppet Development Kit (Community)", "name": "Puppet Development Kit (Community)",
"dockerFile": "Dockerfile", "dockerFile": "Dockerfile",
// Set *default* container specific settings.json values on container create.
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash" "terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
}
}
}, },
// Add the IDs of extensions you want installed when the container is created.
"extensions": [ "extensions": [
"puppet.puppet-vscode", "puppet.puppet-vscode",
"rebornix.Ruby" "rebornix.Ruby"
] ]
// 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": "pdk --version",
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment