devcontainer-template.json 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "id": "javascript-node-mongo",
  3. "version": "1.2.1",
  4. "name": "Node.js & Mongo DB",
  5. "description": "Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn in a container linked to a Mongo DB.",
  6. "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-mongo",
  7. "publisher": "Dev Container Spec Maintainers",
  8. "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
  9. "options": {
  10. "imageVariant": {
  11. "type": "string",
  12. "description": "Node.js version (use -bullseye variants on local arm64/Apple Silicon):",
  13. "proposals": [
  14. "20",
  15. "18",
  16. "16",
  17. "20-bullseye",
  18. "18-bullseye",
  19. "16-bullseye",
  20. "20-buster",
  21. "18-buster",
  22. "16-buster"
  23. ],
  24. "default": "20"
  25. }
  26. },
  27. "platforms": [
  28. "Node.js",
  29. "JavaScript",
  30. "Mongo DB"
  31. ]
  32. }