Skip to content

Commit

Permalink
fix: Issue db and docker-compose postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
M4n0x committed Feb 23, 2022
1 parent eb3ab19 commit 63d4f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- devdb

devdb:
image: postgres
image: postgres:12-alpine
restart: always
volumes:
- ./db/dev/${POSTGRES_DB}:/var/lib/postgresql/data
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
command: bash -c "yarn install && yarn build && yarn start"

db:
image: postgres
image: postgres:12-alpine
restart: always
volumes:
- ./db/prod/${POSTGRES_DB}:/var/lib/postgresql/data
Expand Down

0 comments on commit 63d4f01

Please sign in to comment.