From b23ea366e4415daa258455261415b600775be1d4 Mon Sep 17 00:00:00 2001 From: Bart Geesink Date: Thu, 11 Jul 2024 12:57:49 +0200 Subject: [PATCH] Manage: Add TZ information to the container --- roles/manage/tasks/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/manage/tasks/main.yml b/roles/manage/tasks/main.yml index 36f6f4ebc..1d19bef6d 100644 --- a/roles/manage/tasks/main.yml +++ b/roles/manage/tasks/main.yml @@ -86,6 +86,7 @@ host.docker.internal: host-gateway env: USE_SYSTEM_CA_CERTS: "true" + TZ: "{{ timezone }}" hostname: manage healthcheck: test: @@ -131,3 +132,10 @@ SHIB_ENTITYID: "https://manage.{{ base_domain }}/shibboleth" SHIB_REMOTE_ENTITYID: "https://engine.{{ base_domain }}/authentication/idp/metadata" SHIB_REMOTE_METADATA: "{{ shibboleth_metadata_sources.engine }}" + mounts: + - source: /etc/localtime + target: /etc/localtime + type: bind + - source: /opt/openconext/common/favicon.ico + target: /var/www/favicon.ico + type: bind