BlueIris running in a Docker Container

_Peek

Young grasshopper
Jun 1, 2020
38
11
South
I have BlueIris v5.2.9.19 running within a Docker container via Wine v5.11.

The only outstanding an especially annoying issue is UTC time being displayed within BlueIris. The local time in the container reflects according to the timezone as passed to the container. It's only BlueIris with some fetish for UTC+0 time.

Anyone else got this working that could chime in or could possible advise where BlueIris gets it's time from (i.e. Windows Registry Key or Win.ini)
 
My portainer stack config (compose) being:

version: "2"
services:
blueiris:
image: jshridha/blueiris
container_name: blueiris
environment:
- TZ=Australia/Perth
volumes:
- rediris:/root/prefix32:rw
- /etc/localtime:/etc/localtime:ro
ports:
- 8055:8080
- 5900:5900
- 81:81
restart: unless-stopped