From 1c064021c07908a47e01121632b4ebc24786139d Mon Sep 17 00:00:00 2001 From: phg Date: Fri, 5 Sep 2025 10:55:50 +0200 Subject: [PATCH] fix(docker-compose): uncomment timezone volume mappings for nginx and bitpoll services --- docker-compose.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ae13603..89c7759 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,8 +8,8 @@ services: - bitpoll read_only: true volumes: - # - /etc/localtime:/etc/localtime:ro - # - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + - /etc/timezone:/etc/timezone:ro - ./data/config/nginx-templates:/etc/nginx/templates:ro - static:/var/www tmpfs: @@ -46,9 +46,6 @@ services: bitpoll: image: ghcr.io/fsinfuhh/bitpoll:${BITPOLL_TAG:?BITPOLL_TAG is not configured} - build: - dockerfile: Dockerfile - context: ./src restart: unless-stopped depends_on: db: @@ -60,8 +57,8 @@ services: networks: - appnet volumes: - # - /etc/localtime:/etc/localtime:ro - # - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + - /etc/timezone:/etc/timezone:ro - static:/opt/static - ./data/config/bitpoll:/opt/config - log:/opt/log @@ -84,6 +81,8 @@ services: networks: - appnet volumes: + - /etc/localtime:/etc/localtime:ro + - /etc/timezone:/etc/timezone:ro - db:/var/lib/postgresql/data:rw volumes: