Skip to main content

homarr

·115 words·1 min·
Michael
Author
Michael
some dude that works on datacenters, plays guitar, streams, has a lot of side projects and unhealthy addiction to ow

What is homarr?
#

homarr is a nice little dashboard app that can be used to organize your homelab with a simple webpage interface. Great for Quick links, updates on weather, time, seeing if a server is down, monitoring your webcams or torrents, etc.

Note

Personally I have moved on to homepage. Looks a little nicer in my opinion. Not the biggest fan of homarr interface, Though I may try again after some updates.

Docker Compose Example
#

Note

For docker support, extend a volume to the docker.sock

  • /var/run/docker.sock:/var/run/docker.sock
# homarr - docker compose
---
version: '3'
services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - /app/homarr/configs:/app/data/configs
      - /app/homarr/icons:/app/public/icons
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - '7575:7575'