File: devcontainer.json

package info (click to toggle)
golang-gitlab-gitlab-org-api-client-go 0.123.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,356 kB
  • sloc: makefile: 17
file content (26 lines) | stat: -rw-r--r-- 778 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// The Dev Container format allows you to configure your environment. At the heart of it
// is a Docker image or Dockerfile which controls the tools available in your environment.
//
// See https://aka.ms/devcontainer.json for more information.
{
	"name": "devcontainer-client-go",
	"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu",

	// Features add additional features to your environment. See https://containers.dev/features
	"features": {
        "ghcr.io/devcontainers/features/docker-in-docker:2": {},
		"ghcr.io/devcontainers/features/go:1": {
			"version": "1.22.10"
		}
	},
	// Extensions for VSCode
	"customizations": {
		"vscode": {
			"extensions": [
				"golang.Go",
				"ms-vscode-remote.remote-containers",
				"GitLab.gitlab-workflow"
			]
		}
	}
}