Skip to content

Instantly share code, notes, and snippets.

@HeRoMo
Last active November 11, 2021 16:03
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 HeRoMo/188e7079855e264d245a12d75eaf314d to your computer and use it in GitHub Desktop.
Save HeRoMo/188e7079855e264d245a12d75eaf314d to your computer and use it in GitHub Desktop.
Example devcontainer setting of Jupyter for Ruby
// 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.205.2/containers/ruby
{
"name": "rubydata/datascience",
"image": "rubydata/datascience-notebook:latest",
// Set *default* container specific settings.json values on container create.
"settings": {},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"rebornix.Ruby",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"julialang.language",
"Ikuyadeu.r"
],
"mounts": [
"type=bind,src=${localWorkspaceFolder}/notebooks,dst=/notebooks"
],
"workspaceFolder": "/notebooks",
"initializeCommand": "mkdir -p notebooks"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment