环境:带有 WSL1 和 VSCode 的 Windows 10。
我有.devcontainer.json
以下内容:
{
"name": "my-container",
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:0-14",
"forwardPorts": [3000],
"postCreateCommand": "bash scripts/install-dev-tools.sh",
"postStartCommand": "cd volvofinans && yarn install"
}
启动容器时,它以用户身份启动,root
但我想使用与 Windows/WSL 相同的用户运行它,例如my-uid
我怎样才能做到这一点?