mliljedahl/telldus-core-alpine

By mliljedahl

Updated 4 months ago

Docker image for telldusd to be used to communicate with your tellstick.

Image
Integration & delivery
Internet of things
0

1.1K

mliljedahl/telldus-core-alpine repository overview

telldus-core-alpine

Docker Image Version (latest semver) Docker Image Size (latest semver) Docker Pulls

Docker image running Alpine Linux that provides a telldusd interface to be used to communicate with your tellstick.

Installation

The recommended way for running the image is to include it to your existing docker-compose.yaml file so only linked containers can talk to it.

Docker Compose

Here is an example using docker-compose:

  telldus-core-alpine:
    image: mliljedahl/telldus-core-alpine:1.1.0
    container_name: telldus-core-alpine
    restart: unless-stopped
    devices:
      - /dev/bus/usb:/dev/bus/usb:rwm
    volumes:
      - ./data/tellstick.conf:/etc/tellstick.conf:ro
    expose:
      - "50800"
      - "50801"
Home Assistant

Here is the config that needs to be added or changed in configuration.yaml for home-assistant:

# Example configuration.yaml entry with the TellStick add-on
tellstick:
  host: telldus-core-alpine
  port: [50800, 50801]
Easy installation

Easiest option is to run the docker-compose.yaml file. This is far from recommended because the telldusd ports (50800-50801) will be exposed to the host network (0.0.0.0). Only use this method for testing.

$ docker-compose up -d
Docker run
$ docker run --name telldus-core-alpine -v ./data/tellstick.conf:/etc/tellstick.conf:ro --device=/dev/bus/usb:/dev/bus/usb:rwm -d mliljedahl/telldus-core-alpine:1.1.0

Reporting bugs

Please report bugs in the issue tracker.

License

Distributed under the Apache 2.0 License. See LICENSE for more information.

Tag summary

Content type

Image

Digest

sha256:d90d700a9

Size

10.5 MB

Last updated

4 months ago

docker pull mliljedahl/telldus-core-alpine