Files
wiki/content/projects/homepage/index.md

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