Sha256: 1c1a337da559b846183ca05877eab7a75d7b90a9743f125c6210650e167254ea
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 KB
Contents
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at // https://github.com/microsoft/vscode-dev-containers/tree/master/containers/ruby-2 { "name": "Ruby", "dockerFile": "Dockerfile", // Use 'settings' to set *default* container specific settings.json values on container create. // You can edit these settings after create using File > Preferences > Settings > Remote. "settings": { "terminal.integrated.shell.linux": "/bin/bash" }, "workspaceMount": "src=${localWorkspaceFolder},dst=/workspace,type=bind,consistency=delegated", "workspaceFolder": "/workspace", // Uncomment the next line if you want to publish any ports. // "appPort": [], // Uncomment the next line to run commands after the container is created. "postCreateCommand": "bundle install; gem install ruby-debug-ide -v 0.6.0; gem install ruby-debug-base19x", // Uncomment the next line to use a non-root user. On Linux, this will prevent // new files getting created as root, but you may need to update the USER_UID // and USER_GID in .devcontainer/Dockerfile to match your user if not 1000. // "runArgs": [ "-u", "vscode" ], // Add the IDs of extensions you want installed when the container is created in the array below. "extensions": [ "rebornix.Ruby" ] }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
queueit_knownuserv3-3.6.1 | .devcontainer/devcontainer.json |
queueit_knownuserv3-3.6.0 | .devcontainer/devcontainer.json |