Add container security section

This commit is contained in:
sid palas
2023-02-06 11:09:40 -05:00
parent c2c97e76c3
commit 9788b7eefa
12 changed files with 37 additions and 1 deletions

View 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"
}
]
}
```