mirror of https://github.com/lidarr/Lidarr
20 lines
532 B
JSON
20 lines
532 B
JSON
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||
|
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet
|
||
|
{
|
||
|
"name": "Lidarr",
|
||
|
"image": "mcr.microsoft.com/devcontainers/dotnet:1-6.0",
|
||
|
"features": {
|
||
|
"ghcr.io/devcontainers/features/node:1": {
|
||
|
"nodeGypDependencies": true,
|
||
|
"version": "16",
|
||
|
"nvmVersion": "latest"
|
||
|
}
|
||
|
},
|
||
|
"forwardPorts": [8686],
|
||
|
"customizations": {
|
||
|
"vscode": {
|
||
|
"extensions": ["esbenp.prettier-vscode"]
|
||
|
}
|
||
|
}
|
||
|
}
|