devcontainer.json 523 B

12345678910111213141516171819202122
  1. {
  2. "name": "GyroFlow",
  3. "build": {
  4. "dockerfile": "Dockerfile"
  5. },
  6. "mounts": [
  7. "source=gyroflow-bashhistory-${devcontainerId},target=/home/vscode/commandhistory,type=volume"
  8. ],
  9. "customizations": {
  10. "vscode": {
  11. "settings": {
  12. "dev.containers.mountWaylandSocket": true,
  13. "terminal.integrated.defaultProfile.linux": "bash"
  14. }
  15. }
  16. },
  17. // "postCreateCommand": "sudo apt update && just install-deps",
  18. "features": {
  19. "ghcr.io/devcontainers/features/python:1": {},
  20. "ghcr.io/guiyomh/features/just:0": {}
  21. }
  22. }