Skip to content
Snippets Groups Projects
devcontainer.json 541 B
Newer Older
  • Learn to ignore specific revisions
  • // 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"