Skip to content

Commit

Permalink
feat: specified postgresql version in the docker-compose configs (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
nimish-ks authored Oct 16, 2023
1 parent 2dde739 commit 883fbdc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:

postgres:
container_name: phase-postgres
image: postgres
image: postgres:15.4-alpine3.17
restart: always
env_file:
- .env.dev
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:

postgres:
container_name: phase-postgres
image: postgres
image: postgres:15.4-alpine3.17
restart: always
env_file:
- .env
Expand Down
2 changes: 1 addition & 1 deletion staging-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:

postgres:
container_name: phase-postgres
image: postgres
image: postgres:15.4-alpine3.17
restart: always
env_file:
- .env
Expand Down

0 comments on commit 883fbdc

Please sign in to comment.