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

28 строки
507 B

  1. {
  2. "name": "matrix-docker-ansible-deploy",
  3. "build": {
  4. "dockerfile": "Dockerfile",
  5. "context": ".."
  6. },
  7. "postCreateCommand": {
  8. "Fix Volume Permissions": "chown -R $(whoami): /commandhistory"
  9. },
  10. "mounts": [
  11. {
  12. "source": "matrix-docker-ansible-deploy-bashhistory",
  13. "target": "/commandhistory",
  14. "type": "volume"
  15. }
  16. ],
  17. "customizations": {
  18. "vscode": {
  19. "extensions": [
  20. "EditorConfig.EditorConfig",
  21. "redhat.ansible",
  22. "redhat.vscode-yaml",
  23. "ms-python.python"
  24. ]
  25. }
  26. }
  27. }