resume time!
This commit is contained in:
65
webapps/easy-gate/easy-gate.json
Normal file
65
webapps/easy-gate/easy-gate.json
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"addr": "0.0.0.0:1005",
|
||||
"use_tls": false,
|
||||
"cert_file": "",
|
||||
"key_file": "",
|
||||
"behind_proxy": false,
|
||||
"title": "ReachableCEO Laptop Dashboard",
|
||||
"theme": {
|
||||
"background": "#FFFFFF",
|
||||
"foreground": "#000000"
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "internal",
|
||||
"subnet": "192.168.1.1/24"
|
||||
},
|
||||
{
|
||||
"name": "vpn",
|
||||
"subnet": "10.8.1.1/24"
|
||||
}
|
||||
],
|
||||
"services": [
|
||||
{
|
||||
"name": "WAKAAPI",
|
||||
"category": "",
|
||||
"url": "http://localhost:1001",
|
||||
},
|
||||
{
|
||||
"name": "Metrics",
|
||||
"category": "",
|
||||
"url": "http://localhost:1002",
|
||||
},
|
||||
{
|
||||
"name": "Workout Tracking",
|
||||
"category": "",
|
||||
"url": "http://localhost:1003",
|
||||
},
|
||||
{
|
||||
"name": "Tube Archivist",
|
||||
"category": "",
|
||||
"url": "http://localhost:1004",
|
||||
},
|
||||
{
|
||||
"name": "VsCode Server",
|
||||
"category": "",
|
||||
"url": "http://localhost:1006",
|
||||
}
|
||||
],
|
||||
"notes": [
|
||||
{
|
||||
"name": "Simple note",
|
||||
"text": "This is a simple note for vpn users",
|
||||
"groups": [
|
||||
"vpn"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Another note",
|
||||
"text": "Another note for internal users only",
|
||||
"groups": [
|
||||
"internal"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
9
webapps/vscode-server/docker-compose.yml
Normal file
9
webapps/vscode-server/docker-compose.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
services:
|
||||
tsys-vscode-server:
|
||||
image: gitpod/openvscode-server
|
||||
container_name: tsys-vscode-server
|
||||
restart: always
|
||||
ports:
|
||||
- 1006:8080
|
||||
volumes:
|
||||
- tsys-vscode-server:/home/workspace:cached
|
@@ -1 +0,0 @@
|
||||
docker run -it --init -p 1003:3000 -v "tsys-vscode:/home/workspace:cached" gitpod/openvscode-server
|
Reference in New Issue
Block a user