mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
24 lines
622 B
JSON
24 lines
622 B
JSON
{
|
|
"name": "Librespot Devcontainer",
|
|
"dockerFile": "Dockerfile.alpine",
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
//"postCreateCommand": "",
|
|
"customizations": {
|
|
// Configure properties specific to VS Code.
|
|
"vscode": {
|
|
"settings": {
|
|
"dev.containers.copyGitConfig": true
|
|
},
|
|
"extensions": [
|
|
"eamodio.gitlens",
|
|
"github.vscode-github-actions",
|
|
"rust-lang.rust-analyzer"
|
|
]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"GIT_EDITOR": "nano"
|
|
}
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
}
|