Homarr logo

Homarr

A modern and easy to use dashboard for your home lab

Alternative to: start.me, netvibes, symbaloo

Homarr screenshot

Homarr is a customizable homepage dashboard for organizing and launching your self-hosted applications, with 40+ built-in integrations for services like the *arr stack, Plex, Pi-hole and Proxmox. It offers a drag-and-drop grid layout, thousands of built-in icons, and user management with permissions, SSO (OIDC/LDAP) and encrypted credential storage.

Homarr Docker Compose example

Self-host Homarr on your own server, homelab, or VPS starting from this Docker Compose example. It runs Homarr in Docker containers using the official ghcr.io/homarr-labs/homarr:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  homarr:
    image: ghcr.io/homarr-labs/homarr:latest
    restart: unless-stopped
    volumes:
      - appdata:/appdata
    environment:
      # 64-character hex string used to encrypt stored integration credentials and secrets. Generate with: openssl rand -hex 32
      SECRET_ENCRYPTION_KEY: "changeme"

volumes:
  appdata:

Values set to changeme are required — replace them with your own values before starting Homarr.

Prefer a managed setup? WinterFlow installs, configures, and updates Homarr for you using this same Docker Compose configuration.