Skip to content

Commit

Permalink
feat(misc/docker/postgres-with-docker): Add build of PG versions 13, …
Browse files Browse the repository at this point in the history
…14, 15, and 16 (using make all)
  • Loading branch information
ondrejsika committed Jan 1, 2024
1 parent 96a1944 commit 948dc60
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion misc/docker/postgres-with-tergum/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ POSTGRES_VERSION=16
TERGUM_VERSION=v0.35.0
IMAGE=ghcr.io/tergum-extra/postgres-with-tergum:${POSTGRES_VERSION}-tergum-${TERGUM_VERSION}

all: build push
all:
make build-and-push
make build-and-push POSTGRES_VERSION=15
make build-and-push POSTGRES_VERSION=14
make build-and-push POSTGRES_VERSION=13

build-and-push: build push

build:
docker build \
Expand Down

0 comments on commit 948dc60

Please sign in to comment.