.devcontainer.json 539 B

1234567891011121314151617181920212223
  1. {
  2. "image": "localhost/ai-opensource:latest",
  3. "forwardPorts": [],
  4. "mounts": [
  5. {
  6. "source": "pnpm-store",
  7. "target": "/home/ai/.local/share/pnpm/store",
  8. "type": "volume"
  9. },
  10. {
  11. "source": "shell-history",
  12. "target": "/home/ai/.local/share/history/",
  13. "type": "volume"
  14. }
  15. ],
  16. "workspaceMount": "",
  17. "runArgs": [
  18. "--userns=keep-id:uid=1000,gid=1000",
  19. "--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z",
  20. "--network=host",
  21. "--ulimit=host"
  22. ]
  23. }