1
1
2
2
# Define Default if Values not exist
3
- BASE_IMAGE ?= rockylinux:9.1 -minimal
3
+ BASE_IMAGE ?= rockylinux:9.3 -minimal
4
4
BASEOS ?= rocky9
5
5
IMAGE_REPOSITORY ?= docker.io
6
6
IMAGE_PATH ?= cybertec-pg-container
7
7
PGVERSION ?= 16
8
- PGVERSION_FULL ?= 16.1
8
+ PGVERSION_FULL ?= 16.2
9
9
OLD_PG_VERSIONS ?= 13 14 15
10
- PATRONI_VERSION ?= 3.2.1
11
- PGBACKREST_VERSION ?= 2.44
12
- POSTGIS_VERSION ?= 33
10
+ PATRONI_VERSION ?= 3.1.2
11
+ PGBACKREST_VERSION ?= 2.50
12
+ POSTGIS_VERSION ?= 34
13
13
PACKAGER ?= dnf
14
14
BUILD ?= 1
15
15
IMAGE_TAG ?= $(BASEOS ) -$(PGVERSION_FULL ) -$(BUILD )
@@ -32,30 +32,30 @@ postgres-stage: base postgres-stage
32
32
postgres-gis : base postgres-gis
33
33
postgres-oracle : base postgres-oracle
34
34
exporter : exporter
35
- # --no-cache
35
+
36
36
base-build :
37
- docker build $(ROOTPATH ) \
38
- --file $(ROOTPATH ) /docker/base/Dockerfile \
39
- --tag cybertec-pg-container/base:$(BASEOS ) -$(BUILD ) \
40
- --build-arg BASE_IMAGE \
41
- --build-arg IMAGE_REPOSITORY \
42
- --build-arg BASEOS \
43
- --build-arg PACKAGER \
37
+ docker build $(ROOTPATH ) \
38
+ --file $(ROOTPATH ) /docker/base/Dockerfile \
39
+ --tag cybertec-pg-container/base:$(BASEOS ) -$(BUILD ) \
40
+ --build-arg BASE_IMAGE \
41
+ --build-arg IMAGE_REPOSITORY \
42
+ --build-arg BASEOS \
43
+ --build-arg PACKAGER \
44
44
--build-arg CONTAINERSUITE
45
45
base : base-build;
46
46
47
47
pgbackrest-build :
48
- docker build $(ROOTPATH ) \
49
- --file $(ROOTPATH ) /docker/pgbackrest/Dockerfile \
50
- --tag cybertec-pg-container/pgbackrest:$(IMAGE_TAG ) -$(BUILD ) \
51
- --build-arg BASE_IMAGE \
52
- --build-arg IMAGE_REPOSITORY \
53
- --build-arg BASEOS \
54
- --build-arg PACKAGER \
55
- --build-arg CONTAINERSUITE \
56
- --build-arg BUILD \
57
- --build-arg PGBACKREST_VERSION \
58
- --build-arg OLD_PG_VERSIONS \
48
+ docker build $(ROOTPATH ) \
49
+ --file $(ROOTPATH ) /docker/pgbackrest/Dockerfile \
50
+ --tag cybertec-pg-container/pgbackrest:$(IMAGE_TAG ) -$(BUILD ) \
51
+ --build-arg BASE_IMAGE \
52
+ --build-arg IMAGE_REPOSITORY \
53
+ --build-arg BASEOS \
54
+ --build-arg PACKAGER \
55
+ --build-arg CONTAINERSUITE \
56
+ --build-arg BUILD \
57
+ --build-arg PGBACKREST_VERSION \
58
+ --build-arg OLD_PG_VERSIONS \
59
59
--build-arg PGVERSION
60
60
61
61
pgbackrest : pgbackrest-build;
@@ -144,4 +144,4 @@ exporter-build:
144
144
--build-arg OLD_PG_VERSION \
145
145
--build-arg PGVERSION
146
146
147
- exporter : exporter-build
147
+ exporter : exporter-build
0 commit comments