forked from wunderio/csi-rclone
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 1.09 KB
/
devcontainer.json
File metadata and controls
30 lines (30 loc) · 1.09 KB
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
{
"name": "CSI rclone devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/devcontainers-extra/features/apt-packages:1": {
"packages": "fuse3"
},
"ghcr.io/devcontainers-extra/features/bash-command:1": {
"command": "echo \"user_allow_other\" >> /etc/fuse.conf"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"minikube": "none"
},
"ghcr.io/devcontainers-extra/features/kind:1": {},
"./rclone": {
"rclone_repository": "https://github.com/SwissDataScienceCenter/rclone.git",
"rclone_ref": "v1.70.0+renku-1"
}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers-extra/features/apt-packages",
"ghcr.io/devcontainers-extra/features/bash-command"
],
"containerEnv": {
"CLUSTER_NAME": "csi-rclone-k8s"
}
}