Hey all,
I’m trying to move to Docker and I’m the closest I’ve ever been to it working correctly. However, when I try to load the front end at localhost:8123 it can’t load the page. I’m starting from a docker-compose and here’s the bit about HA. I know Docker networking on a Mac is pretty flaky, but is there anything obvious that I’m missing?
home-assistant:
image: homeassistant/home-assistant:latest
container_name: "hass"
restart: always
depends_on:
influxdb:
condition: service_healthy
ports:
- 8123:8123
volumes:
- ~/Documents/docker_files/homeassistant/config:/config
environment:
- TZ=America/Chicago