From 23b62cc16684c4c1485b179661105807a737a767 Mon Sep 17 00:00:00 2001 From: Arne Naessens Date: Sun, 22 May 2022 11:28:43 +0200 Subject: [PATCH] Add Home assistant --- README.md | 3 ++- apps/homeassistant/config.json | 12 ++++++++++++ apps/homeassistant/docker-compose.yml | 13 +++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 apps/homeassistant/config.json create mode 100644 apps/homeassistant/docker-compose.yml diff --git a/README.md b/README.md index f66e8aa5..9b5ef1e2 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,8 @@ Tipi is a personal homeserver orchestrator. It is running docker containers unde - [Transmission](https://github.com/transmission/transmission) - Fast, easy, and free BitTorrent client - [Wireguard Easy](https://github.com/WeeJeWel/wg-easy) - WireGuard VPN + Web-based Admin UI - [Adguard Home](https://github.com/AdguardTeam/AdGuardHome) - Adguard Home DNS adblocker -## 🛠 Installation +- [Home Assistant](https://github.com/home-assistant/core) - Open source home automation that puts local control and privacy first + ### Installation Requirements - Ubuntu 18.04 LTS or higher (or Debian 10) diff --git a/apps/homeassistant/config.json b/apps/homeassistant/config.json new file mode 100644 index 00000000..ef526f63 --- /dev/null +++ b/apps/homeassistant/config.json @@ -0,0 +1,12 @@ +{ + "name": "Home Assistant", + "available": true, + "port": 8123, + "id": "homeassistant", + "description": "Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.", + "short_desc": "Open source home automation that puts local control and privacy first", + "author": "ArneNaessens", + "source": "https://github.com/home-assistant/core", + "image": "https://avatars.githubusercontent.com/u/13844975?s=200&v=4", + "form_fields": {} +} diff --git a/apps/homeassistant/docker-compose.yml b/apps/homeassistant/docker-compose.yml new file mode 100644 index 00000000..c17aec22 --- /dev/null +++ b/apps/homeassistant/docker-compose.yml @@ -0,0 +1,13 @@ + +version: '3' +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - ${APP_DATA_DIR}/config:/config + restart: unless-stopped + privileged: true + ports: + - ${APP_PORT}:8123 + network_mode: host \ No newline at end of file