mirror of
https://github.com/bitwarden/server.git
synced 2025-01-24 22:11:24 +01:00
c5da5da517
* Added nodejs to the dev container to support building Admin * Updated to use the existing devcontainer node feature * Moved features up to root
26 lines
637 B
JSON
26 lines
637 B
JSON
{
|
|
"name": "Bitwarden Community Dev",
|
|
"dockerComposeFile": "../../.devcontainer/bitwarden_common/docker-compose.yml",
|
|
"service": "bitwarden_server",
|
|
"workspaceFolder": "/workspace",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"mounts": [
|
|
{
|
|
"source": "../../dev/.data/keys",
|
|
"target": "/home/vscode/.aspnet/DataProtection-Keys",
|
|
"type": "bind"
|
|
}
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {},
|
|
"extensions": ["ms-dotnettools.csdevkit"]
|
|
}
|
|
},
|
|
"postCreateCommand": "bash .devcontainer/community_dev/postCreateCommand.sh"
|
|
}
|