Skip to content

Upgrade postgres version in docker compose files from 12.4 to 17.4 #6762

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

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
2 changes: 1 addition & 1 deletion docker/buildkite/docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
- mysql

postgres:
image: postgres:12.4
image: postgres:17.4
environment:
POSTGRES_PASSWORD: cadence
POSTGRES_USER: cadence
Expand Down
2 changes: 1 addition & 1 deletion docker/buildkite/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- mysql

postgres:
image: postgres:12.4
image: postgres:17.4
environment:
POSTGRES_PASSWORD: cadence
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker/dev/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
postgres:
image: postgres:12.4
image: postgres:17.4
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: cadence
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: postgres:12.4
image: postgres:17.4
environment:
POSTGRES_USER: cadence
POSTGRES_PASSWORD: cadence
Expand Down