This repository contains Dockerfile of KNXD
- ubuntu 20.04
-
Install Docker.
-
Download:
docker pull tekn0ir/knxd
(alternatively, you can build an image from Dockerfile:
docker build -t="tekn0ir/knxd" github.com/tekn0ir/knxd
)
docker run -d -p 0.0.0.0:6720:6720 -v /path/to/config.ini:/another/path/to/config.ini tekn0ir/knxd /another/path/to/config.ini
config.ini file documentation can be found on the KNXD site: config documentantion
A sampe docker-compose.yml could look like this and will map your custom config.ini into the container.
version: '3.4'
services:
knxd:
image: renehezser/knxd
container_name: knxd
volumes:
- /mnt/knxd/config.ini:/config.ini
ports:
- 6720:6720
- 3671:3671
restart: always
network_mode: host