telldus-core-alpine
Docker image for telldusd to be used to communicate with your tellstick.
1.1K
Docker image running Alpine Linux that provides a telldusd interface to be used to communicate with your tellstick.
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.
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"
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]
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 --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
Please report bugs in the issue tracker.
Distributed under the Apache 2.0 License. See LICENSE for more information.
Content type
Image
Digest
sha256:d90d700a9…
Size
10.5 MB
Last updated
4 months ago
docker pull mliljedahl/telldus-core-alpine