From 4bb062528f12be530a3754ca23c1bc6dbc862e5a Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Fri, 21 Apr 2023 15:49:40 +0200 Subject: [PATCH] feat(docker): Specify the folder where tzdata downloads data so that it can be used in a volume Closes #1280 Signed-off-by: Thomas Citharel --- config/docker.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/docker.exs b/config/docker.exs index 01b74300e..ec238770b 100644 --- a/config/docker.exs +++ b/config/docker.exs @@ -78,3 +78,5 @@ config :mobilizon, :exports, config :tz_world, data_dir: System.get_env("MOBILIZON_TIMEZONES_DIR", "/var/lib/mobilizon/timezones") + +config :tzdata, :data_dir, System.get_env("MOBILIZON_TIMEZONES_DIR", "/var/lib/mobilizon/tzdata")