Sorcery/sorcery

View on GitHub
.devcontainer/devcontainer.json

Summary

Maintainability
Test Coverage
{
  "name": "Ruby",
  "build": {
    "dockerfile": "Dockerfile"
  },

  // Configure tool-specific properties.
  "customizations": {
    // Configure properties specific to VS Code.
    "vscode": {
      // Add the IDs of extensions you want installed when the container is created.
      "extensions": [
        "rebornix.Ruby"
      ]
    }
  },

  // Set the environment variables
  // "runArgs": ["--env-file",".env"],

  // 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": "bash .devcontainer/postcreate.sh",

  // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
  "remoteUser": "vscode"
}