From 045fb6bfc152cb906a2cdfc1a96e1f7569a65f79 Mon Sep 17 00:00:00 2001 From: Matt Almeida Date: Sat, 4 Apr 2026 19:40:05 -0400 Subject: [PATCH] Upgrade Postgres from 17.9 to 18.3 --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8a523a5e..5f549b12 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,8 @@ # If you bump the database version here, be sure to update the database accordingly on Coolify as well. services: - postgres: - image: postgres:17.9 + postgres-18: + image: postgres:18.3 ports: - ${POSTGRES_PORT-:5432}:5432 environment: @@ -11,7 +11,7 @@ services: POSTGRES_DB: hackathons_test POSTGRES_HOST_AUTH_METHOD: trust volumes: - - postgres-data:/var/lib/postgresql/data + - postgres-18:/var/lib/postgresql volumes: - postgres-data: {} + postgres-18: {}