Files
docs-public/projects/homarr/index.md
wompmacho 56c4f853c0
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 1m11s
add tags to projects
2026-04-03 08:18:05 +00:00

40 lines
1.1 KiB
Markdown

---
title: homarr
description: dashboard for links and homelab
showHero: false
author: wompmacho
date: '2025-02-04'
lastmod: '2025-02-04'
tags: ['dashboard', 'homelab', 'self-hosted']
---
## 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](https://gethomepage.dev/). 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`
```yaml
# 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'
```