base-image-build/.devcontainer/devcontainer.json

37 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2024-08-11 09:09:04 +00:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Rocky9",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"dockerComposeFile": "./compose.yaml",
"service": "rocky",
"workspaceFolder": "/base-image-build",
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
2024-08-20 19:41:28 +00:00
"googlecloudtools.cloudcode",
"waderyan.gitblame",
"eamodio.gitlens",
"ziyasal.vscode-open-in-github",
"donjayamanne.githistory",
"ms-vscode-remote.remote-containers"
2024-08-11 09:09:04 +00:00
]
}
},
"postCreateCommand": "cd /secureFiles && ssh-keygen -t ed25519 -C 'your_email@example.com' -N '' -f id_ed25519 && chmod 600 id_ed25519"
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}