Personal dashboards to organize links for multiple users via a central yaml config.
License: MIT. Built with: TypeScript, Svelte, CSS, JavaScript, Dockerfile, Shell, HTML. Source: https://github.com/knrdl/hubleys-dashboard.
> Weather and unsplash backgrounds won't work in demo.  # Setup ## 1. Setup Docker Compose ```yaml version: '2.4' services: hubleys: image: ghcr.io/knrdl/hubleys-dashboard hostname: hubleys restart: unless-stopped environment: OPENWEATHERMAP_API_KEY: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # get a free api key: https://home.openweathermap.org/api_keys UNSPLASH_API_KEY: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # get a free api key (Access Key): https://unsplash.com/oauth/applications ADMINS: user:user1, user:user2, group:admins volumes: - ./data:/data # run `chown -R 1000:1000 ./data` on the host to fix folder permissions networks: - proxy # must be reachable by the reverse proxy mem_limit: 100m
Self-hosting gives you three things SaaS can’t: data ownership (the files live on disks you control), cost predictability (a one-time setup vs. recurring per-seat fees that grow with your household or team), and longevity (open-source means the app keeps working even if the maintainers move on, since you can pin a working version). The trade-off is that you take on the operational work of running a server, applying updates, and handling backups.
Most self-hosted apps run comfortably on modest hardware — a Raspberry Pi 4, a mini PC, a NAS with Docker support, or a small VPS is usually enough for personal or family use. CPU and RAM requirements scale with how many simultaneous users or how much data you push through Hubleys. Storage requirements depend on the kind of data you keep; check the README for guidance on data retention.
Last verified: 2026-05-22