mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-07-13 18:52:12 +10:00
29 lines
568 B
JSON
29 lines
568 B
JSON
// For format details, see https://aka.ms/devcontainer.json.
|
|
{
|
|
"name": "matrix-docker-ansible-deploy",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": ".."
|
|
},
|
|
"postCreateCommand": {
|
|
"Fix Volume Permissions": "chown -R $(whoami): /commandhistory"
|
|
},
|
|
"mounts": [
|
|
{
|
|
"source": "matrix-docker-ansible-deploy-bashhistory",
|
|
"target": "/commandhistory",
|
|
"type": "volume"
|
|
}
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"EditorConfig.EditorConfig",
|
|
"redhat.ansible",
|
|
"redhat.vscode-yaml",
|
|
"ms-python.python"
|
|
]
|
|
}
|
|
}
|
|
}
|