From 6e8cfcbee0956f96e67a8363dcfa30bfaac0c7d7 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Thu, 9 Jun 2022 12:33:45 -0400 Subject: [PATCH] Update Postgres image and explicitly set timezone --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index e1b912bb..52c5a332 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,7 @@ services: - POSTGRES_PASSWORD=aura postgres: - image: postgres:13.6-bullseye + image: postgres:13.7-bullseye container_name: steering-postgres volumes: - postgres_data:/var/lib/postgresql/data @@ -28,6 +28,7 @@ services: - POSTGRES_USER=steering - POSTGRES_PASSWORD=aura - POSTGRES_DB=steering + - TZ=Europe/Vienna expose: - "5432" -- GitLab