From f43e4cedc94efa79bb0b1b327e587c1f11a81c6c Mon Sep 17 00:00:00 2001 From: "jonas@geiger-natur.de" Date: Sun, 3 Nov 2024 13:46:04 +0100 Subject: [PATCH] Homarr added --- Homarr/README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Homarr/README.md diff --git a/Homarr/README.md b/Homarr/README.md new file mode 100644 index 0000000..0e24f56 --- /dev/null +++ b/Homarr/README.md @@ -0,0 +1,42 @@ +# Homarr + +## Why [Homarr](https://homarr.dev)? + +Homarr is an open source monitoring application with a lot of integrations with apps like [Pihole](/Pihole/README.md), Home-Assistant and more. + +## Prerequisites + +- [Portainer](/Portainer/README.md) +- [Macvlan](/Macvlan/README.md) (optional) + +## Installation Guide + +For the installation i use a docker-compose file. To run it go to Portainer Stacks. You have to modify the comment variables before execution. + +> [!NOTE] +> If you're not using [Macvlan](/Macvlan/README.md) remove networks (2x) and and everything below it. + +```yaml +services: + homarr: + container_name: Homarr + image: ghcr.io/ajnart/homarr:latest + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration + - /volume1/docker/homarr/configs:/app/data/configs + - /volume1/docker/homarr/icons:/app/public/icons + - /volume1/docker/homarr/data:/data + # ports: + # - '7575:7575' + networks: + default: + ipv4_address: 192.168.xxx.xxx + +networks: + default: + name: #macvlan + external: true +``` + +After successful execution of the docker-compose file you have to call your defined ipv4_address and port via web-browser (for example: `192.168.1.123:7575`). \ No newline at end of file