Skip to content

Commit

Permalink
Postgresql version updated to 15 (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruuushhh authored Mar 16, 2023
1 parent f493cf9 commit 5da8713
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN if [ "$CI" = "ENABLED" ]; then \
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'; \
wget --no-check-certificate --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - ; \
apt -y update; \
apt-get install postgresql-14 -y --no-install-recommends; \
apt-get install postgresql-15 -y --no-install-recommends; \
fi

# Installing requirements
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
E2E_TESTS_CLIENT_SECRET: ${E2E_TESTS_CLIENT_SECRET}
E2E_TESTS_REALM_ID: ${E2E_TESTS_REALM_ID}
db:
image: "postgres:latest"
image: "postgres:15"
environment:
POSTGRES_DB: dummy
POSTGRES_USER: postgres
Expand Down
4 changes: 2 additions & 2 deletions tests/sql_fixtures/reset_db_fixtures/reset_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
-- PostgreSQL database dump
--

-- Dumped from database version 14.7 (Debian 14.7-1.pgdg110+1)
-- Dumped by pg_dump version 14.7 (Debian 14.7-1.pgdg100+1)
-- Dumped from database version 15.2 (Debian 15.2-1.pgdg110+1)
-- Dumped by pg_dump version 15.2 (Debian 15.2-1.pgdg100+1)

SET statement_timeout = 0;
SET lock_timeout = 0;
Expand Down

0 comments on commit 5da8713

Please sign in to comment.