You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

devcontainer.json 807B

123456789101112131415161718192021222324252627
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
  3. {
  4. "name": "Ubuntu",
  5. // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
  6. "image": "mcr.microsoft.com/devcontainers/base:noble",
  7. "features": {
  8. "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
  9. "ghcr.io/prulloac/devcontainer-features/latex:1": {
  10. "packages": "pgf,moderncv,moderntimeline,emoji,luatexbase,fontspec"
  11. },
  12. "./features/local": {}
  13. },
  14. "mounts": [
  15. "source=${localEnv:HOME}/.docker,target=/home/vscode/.docker,type=bind"
  16. ],
  17. "customizations": {
  18. "vscode": {
  19. "settings": {
  20. },
  21. "extensions": [
  22. ]
  23. }
  24. }
  25. }