I've been messing around with zoneminder all day and I finally got it working
There are still several things I need to do but I'm trying to do it one step at the time
Need to set more specific motion detection
Need to set the recording time for a motion detection(as it currently records only for a few seconds when it detects something)
Need to set access from mobile and externally
Need to alert notification
I'm still searching on the above but as information seems to be scattered all over the place and honestly I don't find zoneminder documentation that helpful
The first thing I want to do is set the timestap as is showing it incorrectly
Here's what I've done when
Ran docker with Europe/London timezone
Code: Select all
docker run -d --shm-size=4096m -e TZ=Europe/London -e ZM_DB_HOST=db --net net --name zm -p 80:80 quantumobject/docker-zoneminder
Code: Select all
docker exec -it <mycontainer> bash
nano etc/php/7.2/apache2/php.ini
Checked the timezone in
Code: Select all
/etc/timezone
so I changed it to Europe/London
Stopped both my mysql and zoneminder container and restarted, the timestamp is still wrong
Any idea what I'm missing?