devcontainer.json 739 B

1234567891011121314151617181920212223
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
  2. // https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ubuntu
  3. {
  4. "name": "Ubuntu",
  5. "build": {
  6. "dockerfile": "Dockerfile"
  7. },
  8. // Set *default* container specific settings.json values on container create.
  9. "settings": {},
  10. // Add the IDs of extensions you want installed when the container is created.
  11. "extensions": [
  12. "ms-vscode.cmake-tools",
  13. "ms-vscode.cpptools"
  14. ],
  15. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  16. // "forwardPorts": [],
  17. // Use 'postCreateCommand' to run commands after the container is created.
  18. // "postCreateCommand": "uname -a",
  19. }