mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 02:16:28 +02:00
21 lines
893 B
JSON
21 lines
893 B
JSON
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.137.0/containers/go
|
|
{
|
|
"name": "pomerium-remote-containers",
|
|
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"go.useGoProxyToCheckForToolUpdates": false,
|
|
"go.gopath": "/go",
|
|
"go.useLanguageServer": true
|
|
},
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": ["golang.Go"],
|
|
"postCreateCommand": "go version",
|
|
"dockerComposeFile": ["envs/nginx.yaml"],
|
|
// "dockerComposeFile": ["envs/traefik.yaml"],
|
|
"service": "pomerium",
|
|
"shutdownAction": "none",
|
|
"workspaceFolder": "/workspace"
|
|
}
|