Add be9700-api: TP-Link BE9700 router API proxy + Scalar docs

This commit is contained in:
2026-06-29 12:23:15 -07:00
parent 19fa1c7821
commit bf09e224c9
6 changed files with 145 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"schemaVersion": 2,
"services": [
{
"name": "be9700-api",
"image": "git.alexzaw.dev/alexz/be9700-api:1.0.0",
"isMain": true,
"internalPort": 3000,
"environment": [
{ "key": "PORT", "value": "3000" },
{ "key": "TZ", "value": "${TZ}" },
{ "key": "NODE_ENV", "value": "production" }
],
"healthCheck": {
"test": "wget -qO- http://127.0.0.1:3000/ >/dev/null 2>&1 || exit 1",
"interval": "30s",
"timeout": "5s",
"retries": 3,
"startPeriod": "15s"
}
}
]
}