Phase 4: service registry — index.json + 4 service manifests

This commit is contained in:
2026-05-09 09:53:05 -04:00
commit cab94f135b
6 changed files with 104 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"id": "webmail",
"name": "Webmail",
"description": "Rainloop webmail UI. Requires email service to be installed first.",
"version": "1.0.0",
"author": "roof",
"image": "hardware/rainloop",
"volumes": [{"name": "rainloop-data", "mount": "/rainloop/data"}],
"env": [],
"caddy_route": {"subdomain": "webmail", "upstream": "cell-rainloop:8888"},
"dns_entry": {"subdomain": "webmail"},
"iptables_rules": [{"type": "ACCEPT", "dest_ip": "${SERVICE_IP}", "dest_port": 8888, "proto": "tcp"}],
"container_name": "cell-rainloop",
"network_ip_var": "RAINLOOP_IP",
"ports": [8888],
"requires": ["email"]
}