-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 900 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
29 lines (29 loc) · 900 Bytes
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
{
"name": "HPC Workload PoC - Kind Cluster",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {},
"ghcr.io/devcontainers/features/python:1": {}
},
"postCreateCommand": "bash .devcontainer/kind/setup.sh",
"remoteUser": "root",
"privileged": true,
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
],
"runArgs": ["--network=host"],
"forwardPorts": [
8265, 10001, 8000, 5000, 4200
],
"portsAttributes": {
"8265": {"label": "Ray Dashboard"},
"10001": {"label": "Ray Client"},
"8000": {"label": "Ray Serve"},
"5001": {"label": "MLflow Tracking Server"},
"4200": {"label": "Prefect Dashboard"}
},
"remoteEnv": {
"PROJECT_ROOT": "${localWorkspaceFolder}"
}
}