Hello! I have just started playing around with Balena and an openBalena server. Currently, I have an application setup that is running a front end and Home Assistant deployed onto an RPi 3. From my knowledge, I have set up the correct exposed ports and should be able to connect into the dashboard that Home Assistant serves by default.
That, unfortunately, isn’t the case. It appears the port is exposed correctly however I cannot connect.
Here is my docker-compose.yml
version: "2"
volumes:
volume_homeassistant:
services:
react:
build: ./react
privileged: true
restart: always
homeassistant:
build: ./homeassistant
volumes:
- volume_homeassistant:/config
privileged: true
restart: always
ports:
- "8123:8123"
And the Home Assistants Dockerfile
FROM homeassistant/raspberrypi3-homeassistant:latest
COPY config /imported
CMD cp -a /imported/. /config && python -m homeassistant --config /config
I have also set up port forwarding using iptables
as described in the FAQ
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 8123 -j REDIRECT --to-port 8123
Does anyone have any suggestions that will allow me to connect on this port?