forked from mariadb-operator/mariadb-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
54 lines (53 loc) · 1.46 KB
/
devcontainer.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Go",
"image": "mcr.microsoft.com/devcontainers/go:1.22-bookworm",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2.11.0": {
"moby": true,
"installDockerBuildx": true,
"version": "latest",
"dockerDashComposeVersion": "v2"
},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1.1.10": {
"version": "latest",
"helm": "latest",
"minikube": "none"
},
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "mariadb-client"
},
"ghcr.io/dhoeric/features/k9s:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"golang.go",
"ms-azuretools.vscode-docker",
"ms-kubernetes-tools.kind-vscode",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ms-vscode.makefile-tools",
"redhat.vscode-yaml"
]
}
},
"forwardPorts": [
"prometheus:9090",
"grafana:3000",
"minio-console:9001"
],
"portsAttributes": {
"9090": {
"label": "prometheus",
"onAutoForward": "notify"
},
"3000": {
"label": "grafana",
"onAutoForward": "notify"
},
"9001": {
"label": "minio",
"onAutoForward": "notify"
}
}
}