Table of Contents

Homepage

Homepage is a dashboard app for my homelab. It has a great design and lots of customization options - but everything has to be edited in .yaml files.

Accessible soon at http://10.1.1.8:23780 or https://homelab.donferris.me

Resources/Links

https://technotim.live/posts/homepage-dashboard/

Setup

Setup was a breeze with this docker-compose.yaml:

version: "3.3"
services:
  homepage:
    image: ghcr.io/gethomepage/homepage:latest
    container_name: homepage
    environment:
      PUID: 1000 -- optional, your user id
      PGID: 1000 -- optional, your group id
    ports:
      - 3000:3000
    volumes:
      - /path/to/config:/app/config # Make sure your local config directory exists
      - /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker  integrations
    restart: unless-stopped