diff options
author | Valentin Popov <valentin@popov.link> | 2025-06-03 23:01:32 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-06-03 23:01:32 +0300 |
commit | 1dfbf8e7b39cc91aa2589b386c615f750e3b4a13 (patch) | |
tree | 8006eaef7f9985250997dc4058594fca8ce04a35 | |
parent | a47536b0fcbc1cd2a12a1157bf52920abd7f3c66 (diff) | |
download | go-metatrader4-1dfbf8e7b39cc91aa2589b386c615f750e3b4a13.tar.xz go-metatrader4-1dfbf8e7b39cc91aa2589b386c615f750e3b4a13.zip |
Added DevContainer
-rw-r--r-- | .devcontainer/devcontainer.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..1655a7d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,15 @@ +{ + "image": "mcr.microsoft.com/devcontainers/go:latest", + "customizations": { + "vscode": { + "extensions": [ + "golang.go" + ] + } + }, + "runArgs": [ + "--cap-add=SYS_PTRACE", + "--security-opt", + "seccomp=unconfined" + ] +}
\ No newline at end of file |