-
john-metabase authoredjohn-metabase authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
devcontainer.json 541 B
// https://aka.ms/vscode-remote/devcontainer.json
{
"name": "Node.js",
"build": {
"dockerfile": "Dockerfile"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000],
// Comment out the next line to run as root instead.
"remoteUser": "vscode",
"runArgs": ["--network=metabase-dev"],
"postStartCommand": "git config --global --add safe.directory /workspaces/metabase"
}