Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUMP] Update dependency postgres to v15 #4

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ executors:
type: string
docker:
- image: cimg/node:<<parameters.node-version>>
- image: postgres:14.12-alpine
- image: postgres:15.7-alpine
name: pg-api
environment:
POSTGRES_USER: circleci
POSTGRES_HOST_AUTH_METHOD: trust
- image: postgres:14.12-alpine
- image: postgres:15.7-alpine
name: pg-datamart
environment:
POSTGRES_USER: circleci
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
postgres-api:
image: postgres:14.12-alpine
image: postgres:15.7-alpine
container_name: pix-api-data-postgres
ports:
- '${PIX_DATABASE_PORT_API:-5455}:5432'
Expand All @@ -13,7 +13,7 @@ services:
- .env

postgres-datamart:
image: postgres:14.12-alpine
image: postgres:15.7-alpine
container_name: pix-api-data-postgres-datamart
ports:
- '${PIX_DATABASE_PORT_DATAMART:-5456}:5432'
Expand Down