#Hi hope this is the correct place to ask
1 messages · Page 1 of 1 (latest)
You may be better off simply switching to Frigate instead. However, are you running Doods in Docker, or a Doods add-on?
Thanks for replying. Running hass core and doods2 in Docker. I suspect my question is more about me not understanding how to pass args into docker?
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/docker/doods/config.yaml:/opt/doods/config.yaml
from my own Doods config
Adjust your Docker compose file accordingly
My own full compose entry, from before I ditched it for Frigate:
doods:
image: snowzach/doods:amd64
container_name: doods
restart: unless-stopped
environment:
- TZ=Europe/London
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/docker/doods/config.yaml:/opt/doods/config.yaml
- /data/docker/doods/models:/share/doods/models
ports:
- "8080:8080"
ah ok, I was not using a composer file just using docker run. I will try with a compose file. But I'm still confused how the doods2 --config arg ties into running in docker. Unless it is just a question of docs not updated. I already have a hardware NVR, doods2 with pytorch has been working solidly but wanted to try with a tpu.
thanks
Just map the config.yaml, like I did
Will do, thanks again!