- Run
setup.sh
to create the directories for the services mounted to the container - Replace Parameter in
variables.env
- start container via
docker compose up -d
- To restart a specific Container execute
docker restart <containerID>
- Add the following to the
configuration.yaml
of Homeassistant
recorder:
db_url: postgresql://<db_user>:<db_password>@<db_host>:<port>/<db_name>
db_retry_wait: 15
- Restart HomeAssistant Container via
docker restart <containerId>
- check container logs if it was succesfull via
docker logs <containerId>