-
Notifications
You must be signed in to change notification settings - Fork 119
/
app.json
37 lines (37 loc) · 1.12 KB
/
app.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
{
"name": "Ubuntu with NoVNC",
"description": "Ubuntu with Fluxbox, Firefox, VS Code & more.",
"repository": "https://github.com/apoorvvyavahare/vubuntu.git",
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Ubuntu_logoib.svg/240px-Ubuntu_logoib.svg.png",
"keywords": ["docker","ubuntu", "vscode", "novnc", "firefox", "brave", "fluxbox", "linux", "remote"],
"stack": "container",
"env": {
"VNC_PASS": {
"description": "VNC Server Password.",
"required" : true
},
"VNC_TITLE" : {
"description": "VNC Session Title",
"required" : true
} ,
"VNC_RESOLUTION" : {
"description": "VNC Server Resolution in WxH.",
"value" : "1280x720",
"required" : true
} ,
"DISPLAY" : {
"description": "Display Port",
"value" : ":0",
"required" : true
} ,
"NO_VNC PORT" : {
"description": "NoVNC HTTP/HTTPS Port.",
"value" : "$PORT",
"required" : true
} ,
"NGROK_TOKEN" : {
"description": "Ngrok Port Forwarder Token.",
"required" : false
}
}
}