Skip to content

Commit

Permalink
Merge pull request #340 from sanger/postgres-dpl-599
Browse files Browse the repository at this point in the history
Changed the postgres docker image to 14.5
  • Loading branch information
Sangeetha-Bheeman authored Jan 30, 2023
2 parents a16cd4b + 1715a4b commit 1eea9cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:9.6
image: postgres:14.5
ports:
- 5432:5432
env:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ version: "3.3"
services:
# A Postgresql service as close to production as currently possible
# To run it as a standalone container:
# docker run --name postgres-9.6 -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=baracoda_dev -d -p 5432:5432 postgres:9.6
postgres-9.6:
image: postgres:9.6
# docker run --name postgres-14.5 -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=baracoda_dev -d -p 5432:5432 postgres:14.5
postgres-14.5:
image: postgres:14.5
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: baracoda_dev
volumes:
- postgres-data:/var/lib/postgresql/data
- postgres-data:/var/lib/postgresql@14/data

volumes:
postgres-data:

0 comments on commit 1eea9cf

Please sign in to comment.