Skip to content

Commit 7897696

Browse files
committed
Hardcode postgres version in docker-compose files
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)
1 parent 20b19aa commit 7897696

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ If you encountered a bug, please file an
2020
the instructions in the issue template.
2121

2222
**Please don't file issues to ask for help**, we are happy to help
23-
on the mailing list or on gitter, and it is more likely somebody will
23+
on the mailing list or on Telegram, and it is more likely somebody will
2424
answer your query sooner.

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
devdb:
3-
image: postgres
3+
image: postgres:15
44
environment:
55
POSTGRES_HOST_AUTH_METHOD: trust
66
volumes:

docker-compose.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
testdb:
3-
image: postgres
3+
image: postgres:15
44
environment:
55
POSTGRES_HOST_AUTH_METHOD: trust
66

0 commit comments

Comments
 (0)