Create app.json

This commit is contained in:
Apoorv Vyavahare 2021-06-11 00:36:10 +05:30 committed by GitHub
parent 61e7bebca9
commit 6b0fc48c86
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23

28
app.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "Vubuntu",
"description": "Fully fledged Ubuntu NoVNC, refer readme for more info.",
"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", "ssh", "vnc", "vubuntu"],
"stack": "container",
"env": {
"VNC_TITLE" : {
"description": "VNC Session Title, w/o spaces.",
"value" : "Ubuntu_Desktop",
"required" : true
} ,
"VNC_PASS": {
"description": "VNC server password w/o spaces.",
"required" : true
},
"VNC_RESOLUTION" : {
"description": "VNC Server Resolution in WxH, 720p is preferrable.",
"value" : "1280x720",
"required" : true
} ,
"NGROK_TOKEN" : {
"description": "Use private ngrok token to prevent tunnel termination.",
"required" : false
}
}
}