feat(devcontainer): add devcontainer references here and in clustertool templates

This commit is contained in:
Kjeld Schouten
2024-11-03 21:26:51 +01:00
parent d6175ca88e
commit 2bb3e6cf5e
4 changed files with 62 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json",
"name": "ClusterTool Cluster",
"image": "tccr.io/tccr/devcontainer:latest",
"initializeCommand": "docker pull tccr.io/tccr/devcontainer:latest",
"postCreateCommand": {
"setup": "bash ${containerWorkspaceFolder}/.devcontainer/postCreateCommand.sh"
},
"postStartCommand": {
"git": "git config --global --add safe.directory ${containerWorkspaceFolder}"
}
}