Files
docs-public/projects/homepage/index.md
wompmacho ce585907a0
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 20s
Style: Global Markdown structural and formatting &&audit & fix
2026-03-25 04:43:16 +00:00

944 B

title, description, author, date, lastmod, showHero
title description author date lastmod showHero
homepage homepage wompmacho 2025-02-04 2025-02-04 false

What is homepage?

homepage is an open-source, highly customizable, and static site-based dashboard designed to organize your self-hosted services into a beautiful, central hub.

Unlike other dashboards that require complex databases or heavy backend services, homepage runs as a lightweight, Docker-based container that reads a single configuration file (YAML).

Docker Compose Example

# homepage - docker compose
---
services:
  homepage:
    container_name: homepage
    image: ghcr.io/gethomepage/homepage:latest
    restart: unless-stopped
    volumes:
      - /mnt/store/app/homepage/configs:/app/config # Make sure your local config directory exists
      - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
    ports:
      - 7676:3000