-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (40 loc) · 1013 Bytes
/
devcontainer.json
File metadata and controls
43 lines (40 loc) · 1013 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "jME env (SERVER)",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [6080],
"portsAttributes": {
"6080": {
"label": "jME Desktop (Xpra HTML5)",
"onAutoForward": "openBrowser"
},
"5900": {
"label": "VNC",
"onAutoForward": "ignore"
}
},
"containerEnv": {
"JME_DEV_ENVIRONMENT": "yesReally",
"LIBGL_ALWAYS_SOFTWARE": "1",
"MESA_LOADER_DRIVER_OVERRIDE": "llvmpipe",
"GALLIUM_DRIVER": "llvmpipe",
"WAYLAND_DISPLAY": "",
"WAYLAND_SOCKET": "",
"XDG_RUNTIME_DIR": "",
"GDK_BACKEND": "x11",
"SDL_BACKEND": "x11",
"GLFW_PLATFORM": "x11",
"DISPLAY": ":99"
},
"postCreateCommand": "bash .devcontainer/scripts/setup.sh",
"postStartCommand": "bash .devcontainer/scripts/start-desktop.sh",
"customizations": {
"vscode": {
"settings": {
"workbench.colorTheme": "GitHub Dark Dimmed",
"java.jdt.ls.java.home": "/root/.sdkman/candidates/java/25-tem/"
}
}
}
}