homelab-server-v2/.devcontainer/devcontainer.json
2026-07-14 03:02:46 +00:00

24 lines
630 B
JSON

{
"name": "Homelab Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"redhat.ansible",
"hashicorp.terraform",
"eamodio.gitlens"
]
}
},
"features": {},
"mounts": [
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached"
],
"forwardPorts": [],
"postCreateCommand": "ssh-keyscan -H 172.30.1.200 >> ~/.ssh/known_hosts 2> /dev/null || true",
"remoteUser": "vscode"
}