Add container security section
This commit is contained in:
19
11-development-workflow/api-golang/README.md
Normal file
19
11-development-workflow/api-golang/README.md
Normal file
@ -0,0 +1,19 @@
|
||||
Remote debugging setup (vscode `launch.json`):
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "Docker: Attach to Golang",
|
||||
"type": "go",
|
||||
"debugAdapter": "dlv-dap",
|
||||
"mode": "remote",
|
||||
"request": "attach",
|
||||
"port": 4000,
|
||||
"remotePath": "/app",
|
||||
"substitutePath": [
|
||||
{
|
||||
"from": "${workspaceFolder}/docker-course/devops-directive-docker-course/05-example-web-application/api-golang",
|
||||
"to": "/app"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user