new services

This commit is contained in:
Tomasz Borychowski 2022-06-23 22:20:52 +01:00
parent 6d9499b374
commit 799defc645
3 changed files with 63 additions and 0 deletions

View File

@ -102,6 +102,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Dashboard # Dashboard
- [DashMachine](apps/dashboard/dashmachine.md) - [DashMachine](apps/dashboard/dashmachine.md)
- [Flame](apps/dashboard/flame.md) - [Flame](apps/dashboard/flame.md)
- [Homarr](apps/dashboard/homarr.md)
- [Homer](apps/dashboard/homer.md) - [Homer](apps/dashboard/homer.md)
- [SUI](apps/dashboard/sui.md) - [SUI](apps/dashboard/sui.md)
- [Organizr](https://github.com/causefx/Organizr) 🔗 - [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 # Home Automation
- [HomeAssistant](apps/home-automation/home-assistant.md) - [HomeAssistant](apps/home-automation/home-assistant.md)
- [Homebridge](apps/home-automation/homebridge.md)
- [Beehive](https://github.com/muesli/beehive) 🔗 - flexible event/agent & automation system - [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. - [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 - [Node-RED](https://nodered.org/) 🔗 - Low-code programming for event-driven applications

23
apps/dashboard/homarr.md Normal file
View File

@ -0,0 +1,23 @@
# Homarr
Customizable browser's home page to interact with your homeserver's Docker containers (e.g. Sonarr/Radarr).
<br>
- [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
```

View File

@ -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
```