Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# Label used to access the service container
db:
# Docker Hub image
image: postgres:12.7
image: postgres:15.8
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ x-environment:

services:
db:
image: postgres:12.7
image: postgres:15.8
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432"
volumes:
- db-data:/var/lib/postgresql/data

redis:
image: redis:5.0.8
Expand Down Expand Up @@ -127,3 +129,4 @@ services:

volumes:
opensearch-data1:
db-data: {}
Loading