mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/docker-existing-dockerfile
|
|
{
|
|
"name": "devcontainer-project",
|
|
"dockerFile": "Dockerfile",
|
|
"context": "${localWorkspaceFolder}",
|
|
"build": {
|
|
"args": {
|
|
"USER_UID": "${localEnv:USER_UID}",
|
|
"USER_GID": "${localEnv:USER_GID}"
|
|
}
|
|
},
|
|
|
|
// run arguments passed to docker
|
|
"runArgs": ["--security-opt", "label=disable"],
|
|
|
|
// disable command overriding and updating remote user ID
|
|
"overrideCommand": false,
|
|
"userEnvProbe": "loginShell",
|
|
"updateRemoteUserUID": false,
|
|
|
|
// build development environment on creation, make sure you already have shell.nix
|
|
"onCreateCommand": "nix develop",
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [],
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["rust-lang.rust-analyzer", "tamasfe.even-better-toml"]
|
|
}
|
|
}
|
|
}
|