fhem/README.md

85 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2024-01-21 23:04:37 +01:00
---
lang: EN_US
---
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
# FHEM Home Automation System Container Image
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
## Description
2024-01-12 11:12:27 +01:00
2024-01-21 23:08:42 +01:00
[FHEM (Flexible Home Automation)](https://fhem.de) is a Perl server for home automation. It is used to automate
2024-01-21 23:04:37 +01:00
tasks in the household like switching lamps, shutters, heating, etc. and to log events like
temperature, humidity, power consumption.
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
### Attention
This image is intended for my personal use in the first place.
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
If you find it usefull I am happy but I will not devide from my personal goals
to support other people.
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
## Security
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
- fhem is runing as the fhem user in the container
- the root filesystem within the container can be mounted read-only (no updates from within fhem possible)
- image updates also update all fhem related files
- use of *configDB* and *logDB* is mandatory
2024-01-21 23:15:38 +01:00
- no nodejs crap installed by default
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
## Supported Architectures
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
- amd64
- arm64
2024-01-12 11:12:27 +01:00
2024-01-21 23:06:33 +01:00
## External Modules
I am using some external modules. As you can not add remote repositories at runtime I am including them
within the image.
* https://gitea.federationhq.de/byterazor/FHEM-NTFY
* https://gitea.federationhq.de/byterazor/FHEM-NEWSISPM
2024-01-21 23:04:37 +01:00
## Updates
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
I am trying to update the image weekly as long as my private kubernetes cluster is available. So I do not promise anything and do **not** rely
your business on this image.
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
## Prerequisities
2024-01-12 11:12:27 +01:00
2024-01-21 23:04:37 +01:00
A container runtime like
* docker
* podman
* kubernetes
## Container Parameters
* `CONFIG_DATABASE_ENGINE` - which database engine to use for configDB (supported: sqlite and mysql)
* `CONFIG_DATABASE` - the database name (in case of sqlite the path to the db file)
* `CONFIG_DATABASE_USER` - the username required to login to the database server (in case of sqlite ignored)
* `CONFIG_DATABASE_PASS` - the password requried to login to the database server (in case of sqlite ignored)
* `LOG_DATABASE_ENGINE` - the database engine to use for logDB (supported: sqlite and mysql)
* `LOG_DATABASE` - the database name (in case of sqlite the path to the db file)
* `LOG_DATABASE_USER` - the username required to login to the database server (in case of sqlite ignored)
* `LOG_DATABASE_PASS` - the password requried to login to the database server (in case of sqlite ignored)
## Volumes
In case you want to use sqlite you have to mount a volume at */mnt/* within the container and use
it as the directory for you database.
## Source Repository
* https://gitea.federationhq.de/Container/fhem.git
2024-01-28 09:31:23 +01:00
## Prebuild Images
* https://hub.docker.com/repository/docker/byterazor/fhem/general
2024-01-21 23:04:37 +01:00
## Authors
* **Dominik Meyer** - *Initial work*
2024-01-12 11:12:27 +01:00
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.