From 7b1510e572e21ba849a56ab56b3049d371bf2e23 Mon Sep 17 00:00:00 2001 From: Daniel Gaspar Date: Fri, 22 Apr 2022 10:11:53 +0100 Subject: [PATCH] chore: bump postgres to 14 --- .github/workflows/ci.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 643b95cd45..1afff17d9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: postgresql+psycopg2://pguser:pguserpassword@127.0.0.1:15432/app services: postgres: - image: postgres:10-alpine + image: postgres:14-alpine env: POSTGRES_USER: pguser POSTGRES_PASSWORD: pguserpassword diff --git a/docker-compose.yml b/docker-compose.yml index bba4582687..e6b1435425 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.7" services: postgres: container_name: fab-postgres - image: postgres:10 + image: postgres:14 restart: unless-stopped env_file: .env command: postgres -c 'max_connections=500'