Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

28 righe
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. }