Skip to content

Commit

Permalink
Hardcode postgres version in docker-compose files
Browse files Browse the repository at this point in the history
This is mostly necessary for the `./cms-dev.sh` use case, since the default postgres image was updated and now we're getting an error when starting the container with the old data.

Also, a minor fix to SUPPORT.md (last reference of gitter -> telegram)
  • Loading branch information
wil93 committed Dec 23, 2024
1 parent 20b19aa commit 7897696
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ If you encountered a bug, please file an
the instructions in the issue template.

**Please don't file issues to ask for help**, we are happy to help
on the mailing list or on gitter, and it is more likely somebody will
on the mailing list or on Telegram, and it is more likely somebody will
answer your query sooner.
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
devdb:
image: postgres
image: postgres:15
environment:
POSTGRES_HOST_AUTH_METHOD: trust
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
testdb:
image: postgres
image: postgres:15
environment:
POSTGRES_HOST_AUTH_METHOD: trust

Expand Down

0 comments on commit 7897696

Please sign in to comment.