39 lines
1.1 KiB
Markdown
39 lines
1.1 KiB
Markdown
---
|
|
title: homarr
|
|
description: homarr
|
|
author: wompmacho
|
|
date: 2025-02-04
|
|
lastmod: 2025-02-04
|
|
showHero: false # needed to hide "hero banner"
|
|
---
|
|
|
|
## 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'
|
|
```
|