mirror of https://github.com/tiyn/wiki
parent
c89a1381a1
commit
fd04fee798
@ -0,0 +1,45 @@
|
||||
# homeassistant - home-assistant
|
||||
|
||||
This is a [Docker](/wiki/docker.md) container for a [Home Assistant](/wiki/home_assistant.md)
|
||||
server.
|
||||
The official container and documentation was made by
|
||||
[homeassistant](https://hub.docker.com/r/homeassistant/home-assistant).
|
||||
|
||||
## Set-up
|
||||
|
||||
Create the file `rebuild.sh`.
|
||||
Change the settings according to your needs and run `./rebuild.sh` afterwards.
|
||||
|
||||
## Volumes
|
||||
|
||||
Set the following volumes with the -v tag.
|
||||
|
||||
| Outside mount/volume name | Container mount | Description |
|
||||
| ------------------------- | --------------- | ------------------------------- |
|
||||
| `homeassistant_data` | `/config` | configuration for devices, etc |
|
||||
|
||||
## Environment-variables
|
||||
|
||||
Set the following environment-variables in the `environment:` section of the
|
||||
docker-compose file.
|
||||
|
||||
| Name | Usage | Default |
|
||||
| --------------------- | --------------------------- | ----------------------- |
|
||||
| `TZ` | specify the timezone | `` |
|
||||
|
||||
## Additional
|
||||
|
||||
The container needs acces to the host network.
|
||||
This will at the same time expose port 8123 as web interface.
|
||||
|
||||
## rebuild.sh
|
||||
|
||||
```sh
|
||||
docker run --name homeassistant \
|
||||
--restart=unless-stopped \
|
||||
--privileged \
|
||||
--network=host \
|
||||
-e TZ=Europe/Berlin \
|
||||
-v homeassistant_data:/config \
|
||||
-d ghcr.io/home-assistant/home-assistant:stable
|
||||
```
|
@ -0,0 +1,9 @@
|
||||
# Home Assistant
|
||||
|
||||
[Home Assistant](https://www.home-assistant.io/) is a central control system for smart home and
|
||||
other [Internet of Things](/wiki/internet_of_things.md) devices.
|
||||
|
||||
## Setup
|
||||
|
||||
The software can be setup via [Docker](/wiki/docker.md) with the
|
||||
[homeassistant image](/wiki/docker/homeassistant_-_home-assistant.md).
|
@ -0,0 +1,10 @@
|
||||
# Internet of Things
|
||||
|
||||
Internet of Things (IoT) describes communication between devices with sensors - so called smart
|
||||
devices - over the internet or a network.
|
||||
|
||||
## Control Systems
|
||||
|
||||
Many smart devices can be controlled via [Bluetooth](/wiki/bluetooth.md), Zigbee or Z-Wave.
|
||||
[Home Assistant](/wiki/home_assistant.md) is a free and open-source software that is designed to be
|
||||
a central control system for smart home devices.
|
Loading…
Reference in new issue