Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
568 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": "chown -R $(whoami): /commandhistory"
  10. },
  11. "mounts": [
  12. {
  13. "source": "matrix-docker-ansible-deploy-bashhistory",
  14. "target": "/commandhistory",
  15. "type": "volume"
  16. }
  17. ],
  18. "customizations": {
  19. "vscode": {
  20. "extensions": [
  21. "EditorConfig.EditorConfig",
  22. "redhat.ansible",
  23. "redhat.vscode-yaml",
  24. "ms-python.python"
  25. ]
  26. }
  27. }
  28. }