Skip to content

ci: test with multiple postgres versions #13665

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
merged 10 commits into from
Jun 26, 2024
Prev Previous commit
Next Next commit
dokcer-compose.yaml: update postgres version
  • Loading branch information
johnstcn committed Jun 26, 2024
commit 3fcdef4aa111bab1393a1afac2c2005c77ffc409
5 changes: 4 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ services:
database:
condition: service_healthy
database:
image: "postgres:14.2"
# This is typically in line with "latest".
# Minimum supported version is 13.
# More versions here: https://hub.docker.com/_/postgres
image: "postgres:bookworm"
ports:
- "5432:5432"
environment:
Expand Down