Skip to content

tekn0ir/knxd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KNXD Dockerfile

This repository contains Dockerfile of KNXD

Base Docker Image

Installation

  1. Install Docker.

  2. Download: docker pull tekn0ir/knxd

    (alternatively, you can build an image from Dockerfile: docker build -t="tekn0ir/knxd" github.com/tekn0ir/knxd)

Usage

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

config.ini file documentation can be found on the KNXD site: config documentantion

docker-compose

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

About

KNXD Dockerfile.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published