Hi , i recntly made a fresh install of this, on the docker compose i pass my PUID and PGID from my current docker user, but i can't store any records, on the logs says "Cannot write to event folder /var/cache/zoneminder/events. Check that it exists and is owned by the web account user." , the owner of the folder is www-data , so i add my usr to www-data but nothing, and also the material-icons don't show on the page "download failed (font-family: "Material Icons" style:normal weight:400 stretch:100 src index:2): status=2147746065 source: https://192.168.1.1:8443/zm/skins/classic/css/fonts/MaterialIcons-Regular.woff2" i think is for the same issue of permission, so i need to put de PUID of www-data on the compose? or whats is wrong with my setup, this is my compose
zoneminder:
image: dlandon/zoneminder
container_name: zoneminder
privileged: true
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- SHMEM=50%
ports:
- 8083:80
- 8443:443
- 9001:9000
restart: always
volumes:
- ${USERDIR}/docker/config/zoneminder/config:/config:rw
- ${DATADIR}/Media/CCTV:/var/cache/zoneminder:rw
network_mode: "bridge"