From 7fdea3491f4dd7a605b8285a8017e429ecf28fa5 Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 12 Jul 2025 15:59:23 -0400 Subject: [PATCH] Upgrading postgresql to 17.5 (#151) Closes #150 --- .github/workflows/workflow.yml | 2 +- docker-compose.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index dbe2818..74b4171 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-24.04 services: postgres: - image: postgres:17.4 + image: postgres:17.5 env: POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} POSTGRES_USER: ${{ secrets.POSTGRES_USER }} diff --git a/docker-compose.yaml b/docker-compose.yaml index adf2ee0..46c6f3b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -47,7 +47,7 @@ services: # PostgreSQL Database Service # --- icarus web api db --- main_db: - image: postgres:17.4-alpine # Use an official Postgres image (Alpine variant is smaller) + image: postgres:17.5-alpine # Use an official Postgres image (Alpine variant is smaller) container_name: icarus_db # Optional: Give the container a specific name environment: # These MUST match the user, password, and database name in the DATABASE_URL above @@ -73,7 +73,7 @@ services: # --- icarus web auth api db --- auth_db: - image: postgres:17.4-alpine # Use an official Postgres image (Alpine variant is smaller) + image: postgres:17.5-alpine # Use an official Postgres image (Alpine variant is smaller) container_name: icarus_auth_db # Optional: Give the container a specific name environment: # These MUST match the user, password, and database name in the DATABASE_URL above