resume time!

This commit is contained in:
2024-11-26 11:56:36 -06:00
parent e5ba438172
commit 06626ab2fb
6 changed files with 193 additions and 8 deletions

View 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"
]
}
]
}

View 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

View File

@@ -1 +0,0 @@
docker run -it --init -p 1003:3000 -v "tsys-vscode:/home/workspace:cached" gitpod/openvscode-server