update Docker and VS Code configurations for improved debugging
This commit is contained in:
26
.vscode/launch.json
vendored
26
.vscode/launch.json
vendored
@@ -1,12 +1,16 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Docker: Attach to Node",
|
||||
"type": "docker",
|
||||
"request": "attach",
|
||||
"platform": "node",
|
||||
"containerName": "eleventy"
|
||||
}
|
||||
]
|
||||
}
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Docker: Attach to Node",
|
||||
"type": "node",
|
||||
"request": "attach",
|
||||
"port": 9229,
|
||||
"address": "localhost",
|
||||
"localRoot": "${workspaceFolder}",
|
||||
"remoteRoot": "/usr/src/app",
|
||||
"restart": true,
|
||||
"preLaunchTask": "docker-compose-up"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user