joBr99 / nspanel-issue-graveyard

place to move waiting for content issues to and to keep the search a bit cleaned up
0 stars 0 forks source link

[Help] Waiting for Content #12

Closed sorryusernameisalreadytaken closed 2 years ago

sorryusernameisalreadytaken commented 2 years ago

PROBLEM DESCRIPTION

I'm seeing the waiting for content message on the Panel and I'm unable to find the configuration issue.

[x] I've double checked each step explained in the FAQ:

https://docs.nspanel.pky.eu/faq/#waiting-for-content-this-is-taking-longer-than-usual-on-the-screen

REQUESTED INFORMATION

Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!

and here from my mqtt:

docker logs mqtt 1659103817: mosquitto version 2.0.14 starting 1659103817: Config loaded from /mosquitto/config/mosquitto.conf. 1659103817: Opening ipv4 listen socket on port 7003. 1659103817: mosquitto version 2.0.14 running 1659103822: New connection from 192.168.0.1:57330 on port 7003. 1659103822: New client connected from 192.168.0.1:57330 as 6hIs0BKiNMZ4krzG90pqQM (p2, c1, k60). 1659103822: New connection from 192.168.0.7:43417 on port 7003. 1659103822: New client connected from 192.168.0.7:43417 as appdaemon (p2, c1, k60, u'mqtt'). 1659103826: New connection from 10.0.0.84:59992 on port 7003. 1659103826: New client connected from 10.0.0.84:59992 as DVES_E7DDD0 (p2, c1, k30, u'mqtt'). 1659103832: New connection from 192.168.0.6:49336 on port 7003. 1659103832: New client connected from 192.168.0.6:49336 as mqttjs_c71333f8 (p2, c1, k60).

This is my mosquito-config:

listener 7003 socket_domain ipv4 persistence true persistence_location /mosquitto/data allow_anonymous true

Here is my docker-compose.yaml

version: "3.5" services: homeassistant: image: ghcr.io/home-assistant/home-assistant:stable container_name: homeassistant network_mode: host volumes:

  • ./dockerconfigs/homeassistant/:/config
  • /etc/localtime:/etc/localtime:ro environment:
  • TZ=Europe/Berlin privileged: true restart: unless-stopped mosquitto: image: eclipse-mosquitto container_name: mqtt restart: unless-stopped networks:
  • network-no-vpn volumes:
  • /etc/localtime:/etc/localtime:ro
  • ./dockerconfigs/mosquitto/config:/mosquitto/config
  • ./dockerconfigs/mosquitto/data:/mosquitto/data
  • ./dockerconfigs/mosquitto/log:/mosquitto/log devices:
  • /dev/bus/usb/001/002:/dev/bus/usb/001/002 ports:
  • "7003:7003" zigbee2mqtt: container_name: zigbee2mqtt restart: unless-stopped image: koenkk/zigbee2mqtt networks:
  • network-no-vpn volumes:
  • /etc/localtime:/etc/localtime:ro
  • ./dockerconfigs/zigbee2mqtt:/app/data
  • /run/udev:/run/udev:ro devices:
  • /dev/ttyUSB0:/dev/ttyUSB0 ports:
  • 7002:8080 environment:
  • TZ=Europe/Berlin appdaemon: container_name: appdaemon image: acockburn/appdaemon:latest networks:
  • network-no-vpn environment:
  • HA_URL=http://omv:7001
  • TOKEN="xxxxxx"
  • DASH_URL=http://omv:5050 ports:
  • 7004:5050 volumes:
  • /etc/localtime:/etc/localtime:ro
  • ./dockerconfigs/appdaemon/config:/conf depends_on:
  • homeassistant restart: unless-stopped networks: network-no-vpn: name: network-no-vpn
joBr99 commented 2 years ago

I'm never used the docker way for homeassistant, but

HACS is downloading the APP into a folder of the homeassistant config directory, so you have to point the appdaemon container to that folder.

Try to change your volume mount from

- ./dockerconfigs/appdaemon/config:/conf

to

- ./dockerconfigs/homeassistant/appdaemon:/conf
sorryusernameisalreadytaken commented 2 years ago

Thank you! The last puzzle!

It worked. Should we put a note into the doc?

joBr99 commented 2 years ago

I don't have any documentation for setting this project up without HomeAssistant OS. I never used HomeAssistant with docker only. If you want to, feel free to make a copy of the prepare_ha.md file in the docs folder and open up a pull request with some instructions to set it up.

sorryusernameisalreadytaken commented 2 years ago

oh yeah I can do that.