We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c324b6d commit c166381Copy full SHA for c166381
.github/workflows/pr.yml
@@ -9,7 +9,7 @@ jobs:
9
runs-on: ubuntu-20.04
10
services:
11
postgres:
12
- image: postgres
+ image: postgres:14
13
env:
14
# Must be set to any custom value except the default 'postgres'. If default value is used - for some reason
15
# we would not be able to connect to new dynamically created databases in runtime.
docker-compose.yml
@@ -1,10 +1,10 @@
1
# docker-compose for local debugging
2
-version: '3.1'
+version: '3.8'
3
4
5
6
db:
7
+ image: postgres:14.0
8
restart: always
ports:
- 5432:5432
0 commit comments