All entities are"not found"

Hi, running on synology, docker, home assistant and deployed AppDaemon following doc for Docker.

My “Hellow World” works
Create a new dashboard, it works, but all entities are “not found”

This is my appdeamon.yaml

log:
  logfile: STDOUT
  errorfile: STDERR
appdaemon:
  threads: 10
  plugins:
    HASS:
      type: hass
      ha_url: http://192.168.86.29:8123
      token: eyJ0eXAi...(etc)...
hadashboard:
  dash_url: http://Synology2:5050

my log files keep popping
“disconnected from home assistant”…

2019-10-19 20:36:17.616281 INFO Compiling dashboard 'Hello'
2019-10-19 20:36:18.032406 WARNING AppDaemon: HASS: Disconnected from Home Assistant, retrying in 5 seconds
2019-10-19 20:36:18.541387 INFO function [get_dashboard] finished in 1003 ms
2019-10-19 20:36:19.131090 INFO HADashboard: New dashboard connected: Hello Panel
2019-10-19 20:36:20.400243 INFO HADashboard: Dashboard disconnected
2019-10-19 20:36:21.596255 INFO function [get_dashboard] finished in 38 ms
2019-10-19 20:36:21.885658 INFO HADashboard: New dashboard connected: Main Panel
2019-10-19 20:36:23.040903 WARNING AppDaemon: HASS: Disconnected from Home Assistant, retrying in 5 seconds
2019-10-19 20:36:28.043771 WARNING AppDaemon: HASS: Disconnected from Home Assistant, retrying in 5 seconds

I’ve search for the last 2 hours obsessing to try to figure this out… but I can’t find the answer. Help please?

Which version of AppDaemon and Home Assistant are you using?
Did you try to create a new token and do it again?

Hi,
After lots of fussing around and restarting all once more, I got it to work. I used this guidance
https://appdaemon.readthedocs.io/en/stable/DOCKER_TUTORIAL.html

For Info, it’s deployed on a Synology.

In case someone wants to know:
Steps:

  1. Open notepad to paste stuff and edit later
  2. Go to your home assistant
  3. copy the url until the port number. Example: http://100.100.100.2:8123 (exlude anything after)
  4. Paste that in Notepad to reuse
  5. In Home Assistant, click on your name on the bottom left
  6. You will find - long lived tokens - at the bottom - create new
  7. Name it appdaemon - then ok, then COPY that long key.
  8. Paste that in Notepad to reuse.
  9. Copy the code after those instructions and paste into Notepad
  10. Replace the url and token parts with what you got before
  11. Open a terminal (putty) and run that code.
    ** you might want to start the code with “sudo” to have admin privilege. This will prompt you for your password.
docker run --name=appdaemon -d -p 5050:5050 \
--restart=always \
-e HA_URL="<url>" \
-e TOKEN="<token>" \
-e DASH_URL="http://$HOSTNAME:5050" \
-v /volume1/HomeAssistant/appdaemon:/conf \
acockburn/appdaemon:latest