A firetv-server container - perfect to connect Homeassistant to the FireTV as remote control
50K+
A firetv-server container - perfect to connect Homeassistant to the FireTV as remote control
Just add the following to your docker-compose.yml
firetv-server:
image: marvambass/firetv-server
restart: always
environment:
FIRETV: fire-tv
ports:
- "5556:5556"
Some newer FireTV Sticks have the following problem Device authentication required, no keys available.
I found a solution and added a workaround here: https://github.com/happyleavesaoc/python-firetv/issues/49
Connect manually with adb to your firetv stick, trust the device and copy/mount the adbkey and adbkey.pub to the container beneath /root/.android/. After that it will be able to connect to your firetv again.
firetv-server:
image: marvambass/firetv-server
restart: always
environment:
FIRETV: fire-tv
ports:
- "5556:5556"
volumes:
- /root/.android:/root/.android:ro
Content type
Image
Digest
Size
158.6 MB
Last updated
over 8 years ago
docker pull marvambass/firetv-server