First time using Docker.
I am having a hard time nailing down a config mapping issue using Docker on a RPi4. I am using the latest Trixie and I was successful in getting HA setup using a Docker container except for the config issue.
When I run a check configuration like this
docker exec homeassistant python -m homeassistant --script check_config --info all
I get this which is not my configuration.yaml file but the internal created one.
Successful config (all)
homeassistant:
customize: ?
customize_domain: ?
customize_glob: ?
automation:
default_config:
scene:
frontend:
themes: ?
script:
This is my Docker run file:
docker run -d
–name homeassistant
–privileged
–restart=unless-stopped
-e TZ=US
-v /home/xxxxx/homeassistant:/config
-v /run/dbus:/run/dbus:ro
–network=host
Package home-assistant · GitHub
I verified that configuration.yaml is in /home/xxxxx/homeassistant/config.
So should I see the contents of my configuration.yaml file if I run the above check config?
Am I missing something obvious?
Thanks for any help
Mark