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

chore(deps): update postgres docker tag to v17.2 #525

Merged
merged 2 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 6 additions & 6 deletions docker-compose-3-persona.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ networks:
services:
# -------------------------------------------------------------------- member-a
member-a-postgres-matchmaker-api:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: member-a-postgres-matchmaker-api
ports:
- 5432:5432
Expand All @@ -31,7 +31,7 @@ services:
networks: ['member-a']

member-a-postgres-identity:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: member-a-postgres-identity
ports:
- 5433:5432
Expand Down Expand Up @@ -124,7 +124,7 @@ services:

# -------------------------------------------------------------------- member-b
member-b-postgres-matchmaker-api:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: member-b-postgres-matchmaker-api
ports:
- 5442:5432
Expand All @@ -137,7 +137,7 @@ services:
networks: ['member-b']

member-b-postgres-identity:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: member-b-postgres-identity
ports:
- 5443:5432
Expand Down Expand Up @@ -231,7 +231,7 @@ services:
# ------------------------------------------------------------------- optimiser

optimiser-postgres-matchmaker-api:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: optimiser-postgres-matchmaker-api
ports:
- 5452:5432
Expand All @@ -244,7 +244,7 @@ services:
networks: ['optimiser']

optimiser-postgres-identity:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: optimiser-postgres-identity
ports:
- 5453:5432
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres-matchmaker-api:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: postgres-matchmaker-api
ports:
- 5432:5432
Expand All @@ -12,7 +12,7 @@ services:
- POSTGRES_DB=sqnc-matchmaker-api

postgres-identity-service:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: postgres-identity
ports:
- 5433:5432
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres-matchmaker-api:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: postgres-matchmaker-api
ports:
- 5432:5432
Expand All @@ -12,7 +12,7 @@ services:
- POSTGRES_DB=sqnc-matchmaker-api

postgres-identity-service:
image: postgres:17.1-alpine
image: postgres:17.2-alpine
container_name: postgres-identity
ports:
- 5433:5432
Expand Down
Loading