I am spinning up a new docker container on my raspi 5 (raspi.voh.haus). When i run docker compose up the container comes up without errors. However when I browse to raspi.voh.haus:8123 it times out. When I run nc -zv raspi.voh.haus 8123 it times out. When I nc to 22 or 80 it succeeds and raspi.voh.haus is pingable.
Any suggestions of where I can look for why I can’t access the web interface?
My docker-compose.yml
version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- ./config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
restart: unless-stopped
network_mode: host
cap_add:
- NET_ADMIN
- NET_RAW
environment:
TZ: America/Los_Angeles
my sudo ufw status numbered
Status: active
To Action From
-- ------ ----
[ 1] 22/tcp ALLOW IN Anywhere
[ 2] Nginx Full ALLOW IN Anywhere
[ 3] 22/tcp (v6) ALLOW IN Anywhere (v6)
[ 4] Nginx Full (v6) ALLOW IN Anywhere (v6)
my other containers on the raspi running on different ports are responsive and available.