diff options
author | Hendrik Jäger <hendrik.jaeger@dswiss.com> | 2022-06-22 09:49:37 +0200 |
---|---|---|
committer | Hendrik Jäger <hendrik.jaeger@dswiss.com> | 2022-06-22 09:49:37 +0200 |
commit | 4048e12efcb52a63f0304e679dc6c6e96a139146 (patch) | |
tree | 2f34a681b4ea5fa4a0ac8d3c0c55b4c82bd58899 /.devcontainer/README.md |
initial
Diffstat (limited to '.devcontainer/README.md')
-rw-r--r-- | .devcontainer/README.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.devcontainer/README.md b/.devcontainer/README.md new file mode 100644 index 0000000..cc4675e --- /dev/null +++ b/.devcontainer/README.md @@ -0,0 +1,34 @@ +# 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", +} +``` + + + |