From 6287d396c9df5c354df1f8bb52e0c74cbc1df78d Mon Sep 17 00:00:00 2001 From: Kartikey Choudhary Date: Tue, 21 Apr 2026 14:26:13 +0530 Subject: [PATCH] Add reach-me-out to homelab templates Static link-in-bio page (React + Vite, baked YAML config) published as kartikey31choudhary/reach-me-out on Docker Hub. Single-container (type 1) running nginx on port 80. Optional config.yaml bind-mount lets users override name, links, and theme at runtime without rebuilding. Repo: https://github.com/kartikeychoudhary/Reach-me-out Image: https://hub.docker.com/r/kartikey31choudhary/reach-me-out --- sources/local/homelab_templates.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sources/local/homelab_templates.json b/sources/local/homelab_templates.json index 09840d5f..9b4636fc 100644 --- a/sources/local/homelab_templates.json +++ b/sources/local/homelab_templates.json @@ -581,6 +581,32 @@ }, "title": "Pumperly", "type": 3 + }, + { + "categories": [ + "Web", + "Tools" + ], + "description": "Static, config-driven link-in-bio page. Profile card, tappable links, vCard download, QR share — all driven from a single YAML file baked at build time.", + "env": [], + "image": "kartikey31choudhary/reach-me-out:latest", + "logo": "https://raw.githubusercontent.com/kartikeychoudhary/Reach-me-out/main/public/logo.svg", + "name": "reach-me-out", + "note": "Mount your own config.yaml to /usr/share/nginx/html/config.yaml (read-only) to customize name, links and theme. See https://github.com/kartikeychoudhary/Reach-me-out for the YAML schema and examples.", + "platform": "linux", + "ports": [ + "8080:80/tcp" + ], + "restart_policy": "unless-stopped", + "title": "Reach Me Out", + "type": 1, + "volumes": [ + { + "bind": "/path/to/config.yaml", + "container": "/usr/share/nginx/html/config.yaml", + "readonly": true + } + ] } ] }