Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

38 строки
756 B

  1. // For format details, see https://aka.ms/devcontainer.json.
  2. {
  3. "name": "matrix-docker-ansible-deploy",
  4. "build": {
  5. "dockerfile": "Dockerfile",
  6. "context": ".."
  7. },
  8. "postCreateCommand": {
  9. "Fix Volume Permissions": "sudo chown -R $(whoami): /commandhistory"
  10. },
  11. "postAttachCommand": "bash",
  12. "mounts": [
  13. {
  14. "source": "${localEnv:SSH_AUTH_SOCK}",
  15. "target": "/agent.sock",
  16. "type": "bind"
  17. },
  18. {
  19. "source": "matrix-docker-ansible-deploy-bashhistory",
  20. "target": "/commandhistory",
  21. "type": "volume"
  22. }
  23. ],
  24. "containerEnv": {
  25. "SSH_AUTH_SOCK": "/agent.sock"
  26. },
  27. "customizations": {
  28. "vscode": {
  29. "extensions": [
  30. "EditorConfig.EditorConfig",
  31. "redhat.ansible",
  32. "redhat.vscode-yaml",
  33. "ms-python.python"
  34. ]
  35. }
  36. }
  37. }