Skip to content

Commit

Permalink
Merge pull request #113 from WildCodeSchool/chore/111/add-fixed-postg…
Browse files Browse the repository at this point in the history
…res-version-in-docker-compose

chore : add fixed postgres version in docker compose
  • Loading branch information
AntoniSDev authored Oct 10, 2024
2 parents 363669e + eaebc71 commit d255af4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-compose.build.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
timeout: 2s
retries: 100
db:
image: postgres
image: postgres:16.4
healthcheck:
test: ["CMD-SHELL", "pg_isready -d postgres -U postgres"]
interval: 1s
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
timeout: 2s
retries: 100
db:
image: postgres
image: postgres:16.4
healthcheck:
test: ["CMD-SHELL", "pg_isready -d postgres -U postgres"]
interval: 1s
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
timeout: 2s
retries: 100
db:
image: postgres
image: postgres:16.4
healthcheck:
test: ["CMD-SHELL", "pg_isready -d postgres -U postgres"]
interval: 1s
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
timeout: 2s
retries: 100
db:
image: postgres
image: postgres:16.4
healthcheck:
test: ["CMD-SHELL", "pg_isready -d postgres -U postgres"]
interval: 1s
Expand Down

0 comments on commit d255af4

Please sign in to comment.