devcontainer.json 749 B

123456789101112131415161718192021222324
  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.202.5/containers/docker-from-docker-compose
  3. {
  4. "name": "haxe",
  5. "dockerComposeFile": "docker-compose.yml",
  6. "service": "workspace",
  7. "workspaceFolder": "/workspace",
  8. // Use this environment variable if you need to bind mount your local source code into a new container.
  9. "remoteEnv": {
  10. "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
  11. },
  12. // Set *default* container specific settings.json values on container create.
  13. "settings": {},
  14. "extensions": [
  15. "nadako.vshaxe",
  16. "ms-azuretools.vscode-docker",
  17. "earthly.earthfile-syntax-highlighting",
  18. ],
  19. "remoteUser": "vscode"
  20. }