A lot of selfhosted containers instructions contain volume mounts like:
docker run ...
-v /etc/timezone:/etc/timezone:ro \
-v /etc/localtime:/etc/localtime:ro \
...
but all the times I tried to skip those mounts everything seemed to work perfectly.
Are those mounts only necessary in specific cases?
PS:
Bonus question: other containers instructions say to define the TZ
variable. Is that only needed when one wants a container to use a different timezone than the host?
Most containers default to UTC, and depending what you’re running, that may be fine.
I only mount
/etc/timezone
//etc/localtime
if I’m running a container where it needs to be on the same timezone as the host (DB containers, anything where I want the logs in local time, etc). Not all containers use theTZ
env var, so bind mounting the timezone files from the host is a guaranteed way to sync them.