File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ LANG=en_US.UTF-8
13
13
# locale filter to include in the locale generator
14
14
LANGS = " en_US.UTF-8,id_ID.UTF-8"
15
15
16
- POSTGRES_MAJOR_VERSION = 13
16
+ POSTGRES_MAJOR_VERSION = 14
17
17
POSTGIS_MAJOR_VERSION = 3
18
18
POSTGIS_MINOR_RELEASE = 1
Original file line number Diff line number Diff line change 24
24
strategy :
25
25
matrix :
26
26
postgresMajorVersion :
27
- - 13
27
+ - 14
28
28
postgisMajorVersion :
29
29
- 3
30
30
postgisMinorRelease :
85
85
strategy :
86
86
matrix :
87
87
postgresMajorVersion :
88
- - 13
88
+ - 14
89
89
postgisMajorVersion :
90
90
- 3
91
91
postgisMinorRelease :
Original file line number Diff line number Diff line change 29
29
strategy :
30
30
matrix :
31
31
postgresMajorVersion :
32
- - 13
32
+ - 14
33
33
postgisMajorVersion :
34
34
- 3
35
35
postgisMinorRelease :
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ FROM postgis-base AS postgis-prod
65
65
66
66
# Reset ARG for version
67
67
ARG IMAGE_VERSION
68
- ARG POSTGRES_MAJOR_VERSION=13
68
+ ARG POSTGRES_MAJOR_VERSION=14
69
69
ARG POSTGIS_MAJOR_VERSION=3
70
70
ARG POSTGIS_MINOR_RELEASE=1
71
71
Original file line number Diff line number Diff line change 7
7
services :
8
8
9
9
db :
10
- image : kartoza/postgis:13 -3.1
10
+ image : kartoza/postgis:14 -3.1
11
11
volumes :
12
12
- postgis-data:/var/lib/postgresql
13
13
- dbbackups:/backups
@@ -26,7 +26,7 @@ services:
26
26
test : " exit 0"
27
27
28
28
dbbackups :
29
- image : kartoza/pg-backup:13 .0
29
+ image : kartoza/pg-backup:14 .0
30
30
hostname : pg-backups
31
31
volumes :
32
32
- dbbackups:/backups
Original file line number Diff line number Diff line change 8
8
9
9
services :
10
10
pg-publisher :
11
- image : kartoza/postgis:13.0
11
+ image : kartoza/postgis:14-3.1
12
12
restart : ' always'
13
13
volumes :
14
14
- pg-publisher-data-dir:/var/lib/postgresql
@@ -25,7 +25,7 @@ services:
25
25
test : " exit 0"
26
26
27
27
pg-subscriber :
28
- image : kartoza/postgis:13.0
28
+ image : kartoza/postgis:14-3.1
29
29
restart : ' always'
30
30
volumes :
31
31
- pg-subscriber-data-dir:/var/lib/postgresql
Original file line number Diff line number Diff line change 8
8
9
9
services :
10
10
pg-master :
11
- image : ' kartoza/postgis:13.0 '
11
+ image : kartoza/postgis:14-3.1
12
12
restart : ' always'
13
13
# You can optionally mount to volume, to play with the persistence and
14
14
# observe how the slave will behave after restarts.
@@ -35,7 +35,7 @@ services:
35
35
test : " exit 0"
36
36
37
37
pg-slave :
38
- image : ' kartoza/postgis:13.0 '
38
+ image : kartoza/postgis:14-3.1
39
39
restart : ' always'
40
40
# You can optionally mount to volume, but we're not able to scale it
41
41
# in that case.
Original file line number Diff line number Diff line change 25
25
if [[ " ${SSL_KEY_FILE} " != ' /etc/ssl/private/ssl-cert-snakeoil.key' ]]; then
26
26
PG_CONF_HOST=' hostssl'
27
27
CERT_AUTH=' cert'
28
- CLIENT_VERIFY=
28
+ CLIENT_VERIFY=' clientcert=verify-full '
29
29
else
30
30
# Used when using the default ssl certs
31
31
PG_CONF_HOST=' hostssl'
32
32
CERT_AUTH=${PASSWORD_AUTHENTICATION}
33
- CLIENT_VERIFY=' clientcert=0 '
33
+ CLIENT_VERIFY=
34
34
fi
35
35
36
36
fi
You can’t perform that action at this time.
0 commit comments