diff --git a/README.md b/README.md index 118f212..e34677d 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Dashboard - [DashMachine](apps/dashboard/dashmachine.md) - [Flame](apps/dashboard/flame.md) +- [Homarr](apps/dashboard/homarr.md) - [Homer](apps/dashboard/homer.md) - [SUI](apps/dashboard/sui.md) - [Organizr](https://github.com/causefx/Organizr) 🔗 @@ -186,6 +187,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Home Automation - [HomeAssistant](apps/home-automation/home-assistant.md) +- [Homebridge](apps/home-automation/homebridge.md) - [Beehive](https://github.com/muesli/beehive) 🔗 - flexible event/agent & automation system - [Huginn](https://github.com/huginn/huginn) 🔗 - Create agents that monitor and act on your behalf. - [Node-RED](https://nodered.org/) 🔗 - Low-code programming for event-driven applications diff --git a/apps/dashboard/homarr.md b/apps/dashboard/homarr.md new file mode 100644 index 0000000..01f81ec --- /dev/null +++ b/apps/dashboard/homarr.md @@ -0,0 +1,23 @@ +# Homarr + +Customizable browser's home page to interact with your homeserver's Docker containers (e.g. Sonarr/Radarr). + +
+ +- [Github repo](https://github.com/ajnart/homarr) + + +## docker-compose.yml +```yml +--- +services: + homarr: + image: ghcr.io/ajnart/homarr:latest + container_name: homarr + restart: unless-stopped + volumes: + - ./homarr/configs:/app/data/configs + - ./homarr/icons:/app/public/icons + ports: + - 7575:7575 +``` diff --git a/apps/home-automation/homebridge.md b/apps/home-automation/homebridge.md new file mode 100644 index 0000000..68b479e --- /dev/null +++ b/apps/home-automation/homebridge.md @@ -0,0 +1,38 @@ +# Homebridge + +Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. +Some of the most popular plugins include: + +- Ring +- Nest & Nest Cameras +- TP-Link Kasa Smart Home +- Hue / deCONZ (Zigbee) +- Belkin Wemo +- myQ +- UniFi Protect + +--- + +- [Homepage](https://homebridge.io/) +- [Github repo](https://github.com/homebridge/homebridge) +- [Docs](https://github.com/homebridge/homebridge/wiki) + + +## docker-compose.yml +```yml +--- +services: + homebridge: + image: oznu/homebridge:latest + container_name: homebridge + restart: unless-stopped + network_mode: host + environment: + - TZ=Europe/Dublin + - PGID=1000 + - PUID=1000 + - HOMEBRIDGE_CONFIG_UI=1 + - HOMEBRIDGE_CONFIG_UI_PORT=8581 + volumes: + - ./homebridge:/homebridge +```