Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.01 KB

README.md

File metadata and controls

45 lines (29 loc) · 1.01 KB

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