m1k1o / neko

A self hosted virtual browser that runs in docker and uses WebRTC.
https://neko.m1k1o.net/
Apache License 2.0
7.11k stars 524 forks source link

[Feature] Add environment variable to configure Timezone #397

Closed jameskitt616 closed 3 months ago

jameskitt616 commented 3 months ago

It would be a nice to have to be able to configure the Timezone inside the docker container. I currently need to manually run unlink /etc/localtime && ln -s /usr/share/zoneinfo/Europe/Berlin /etc/localtime inside the docker container after it successfully started.

m1k1o commented 3 months ago

You could do it by adding TZ Environment variable. That is a feature of debian in docker.

TZ=Europe/Vienna

jameskitt616 commented 3 months ago

Oh thanks. Marked solved.