Как отладить Go в VScode от имени пользователя root
Я хочу отлаживать контейнер в Visual Studio Code. но containerd должен работать от имени пользователя root. Нет ли возможности начать работу с правами root?
это мой текущий конфиг:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "/home/user/go/src/github.com/containerd/containerd/cmd/containerd",
"env": {},
"args": [],
"showLog": true
}
]
}