From 80d396b2bfe5a730c0b4f98cd8fc696166c75e85 Mon Sep 17 00:00:00 2001 From: Techulus Agent <291950465+techulus-agent@users.noreply.github.com> Date: Fri, 10 Jul 2026 16:46:05 +1000 Subject: [PATCH] Update Postgres images to 18 --- compose.dev.yml | 4 ++-- deployment/compose.postgres.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.dev.yml b/compose.dev.yml index 070d6302..a67bb479 100644 --- a/compose.dev.yml +++ b/compose.dev.yml @@ -1,6 +1,6 @@ services: postgres: - image: postgres:16-alpine + image: postgres:18-alpine environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres @@ -8,7 +8,7 @@ services: ports: - "5432:5432" volumes: - - postgres_data:/var/lib/postgresql/data + - postgres_data:/var/lib/postgresql healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 10s diff --git a/deployment/compose.postgres.yml b/deployment/compose.postgres.yml index c6e1d3a0..2ca6c88e 100644 --- a/deployment/compose.postgres.yml +++ b/deployment/compose.postgres.yml @@ -52,7 +52,7 @@ services: restart: unless-stopped postgres: - image: postgres:16 + image: postgres:18 env_file: - ./.env environment: @@ -60,7 +60,7 @@ services: - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - POSTGRES_DB=${POSTGRES_DB} volumes: - - postgres-data:/var/lib/postgresql/data + - postgres-data:/var/lib/postgresql healthcheck: test: ["CMD-SHELL", "pg_isready -U \"$${POSTGRES_USER}\" -d \"$${POSTGRES_DB}\""] interval: 30s