A Docker wrapper for knxd, the KNX daemon for Linux.
765
A Docker wrapper for knxd, the KNX daemon for Linux.
Available on Docker Hub: torstend/knxd
Github repository: t3r/knxd-docker
This Docker image provides a containerized version of knxd, allowing you to run the KNX daemon in a Docker environment. The image uses an entrypoint that accepts standard knxd command line arguments.
docker run -it --rm torstend/knxd [knxd arguments]
The knxd.ini configuration file is not included in the Docker image and must be supplied as a command line argument:
docker run -it --rm -v /path/to/your/knxd.ini:/config/knxd.ini torstend/knxd /config/knxd.ini [other arguments]
# Mount your config file and run knxd
docker run -it --rm \
-v ./knxd.ini:/config/knxd.ini \
torstend/knxd /config/knxd.ini --listen-tcp=3671
knxd is a KNX daemon that provides access to the KNX bus. For more information, documentation, and source code, visit the knxd repository.
See LICENSE file for details.
Content type
Image
Digest
sha256:6e1258dc6…
Size
41.2 MB
Last updated
11 months ago
docker pull torstend/knxd