Update devcontainer configuration with volume mount and specific VHDL extension path

This commit is contained in:
2025-04-27 19:34:10 +00:00
parent 7e78e62b47
commit 95913a08cf

View File

@@ -4,12 +4,14 @@
"runArgs": [ "runArgs": [
"--privileged", "--privileged",
"--cap-add=SYS_ADMIN", "--cap-add=SYS_ADMIN",
"--shm-size=2g" "--shm-size=2g",
"-v",
"/run/user/1000/gnupg/S.gpg-agent:/run/user/1000/gnupg/S.gpg-agent"
], ],
"customizations": { "customizations": {
"vscode": { "vscode": {
"extensions": [ "extensions": [
"p2l2.vhdl-by-hgb", "/home/xilinx/vsxirepo/vhdl-by-hgb.vsix",
"eamodio.gitlens" "eamodio.gitlens"
], ],
"settings": { "settings": {
@@ -21,5 +23,8 @@
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind", "workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"features": {}, "features": {},
"forwardPorts": [10000] "forwardPorts": [
10000
],
"postStartCommand": "git config --global user.signingkey 87C8A5DD5C14DF55DBE1DB4199AC216D447E61C0 && git config --global gpg.format openpgp && git config --global commit.gpgsign true && git config --global tag.forceSignAnnotated true && sudo apt update && sudo apt upgrade -y"
} }