Skip to content

Instantly share code, notes, and snippets.

@phelewski
Created March 12, 2020 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phelewski/a635c0b49c8ee129d458ce640cf859fd to your computer and use it in GitHub Desktop.
Save phelewski/a635c0b49c8ee129d458ce640cf859fd to your computer and use it in GitHub Desktop.
Visual Studios Code Remote - Container Blog | Example devcontainer.json
{
"name": "Ruby Development",
"dockerFile": "Dockerfile",
"appPort": 9001,
"extensions": [
"rebornix.Ruby"
],
"settings": {
"[ruby]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
}
},
"postCreateCommand": "bundle install"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment