Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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