Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
on: [push, pull_request]

env:
pgbackrest_completion_version: "v0.9"
pgbackrest_completion_version: "v0.10"
build_platforms: "linux/amd64,linux/arm64"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BACKREST_DOWNLOAD_URL = https://github.com/pgbackrest/pgbackrest/archive/release
BACKREST_GPDB_VERSIONS = 2.47_arenadata4 2.50_arenadata4 2.52_arenadata9
TAG_GPDB?=2.52_arenadata9
BACKREST_GPDB_DOWNLOAD_URL = https://github.com/arenadata/pgbackrest/archive
BACKREST_COMP_VERSION?=v0.9
BACKREST_COMP_VERSION?=v0.10
UID := $(shell id -u)
GID := $(shell id -g)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,11 @@ make build_version_alpine TAG=2.55.0
or

```bash
docker build -f Dockerfile --build-arg BACKREST_VERSION=2.55.0 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.55.0 .
docker build -f Dockerfile --build-arg BACKREST_VERSION=2.55.0 --build-arg BACKREST_COMPLETION_VERSION=v0.10 -t pgbackrest:2.55.0 .
```

```bash
docker build -f Dockerfile.alpine --build-arg BACKREST_VERSION=2.55.0 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.55.0-alpine .
docker build -f Dockerfile.alpine --build-arg BACKREST_VERSION=2.55.0 --build-arg BACKREST_COMPLETION_VERSION=v0.10 -t pgbackrest:2.55.0-alpine .
```

### Build pgBackRest < `v2.51`
Expand All @@ -268,11 +268,11 @@ make build_version_alpine TAG=2.49
or

```bash
docker build -f Dockerfile_make --build-arg BACKREST_VERSION=2.49 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.49 .
docker build -f Dockerfile_make --build-arg BACKREST_VERSION=2.49 --build-arg BACKREST_COMPLETION_VERSION=v0.10 -t pgbackrest:2.49 .
```

```bash
docker build -f Dockerfile_make.alpine --build-arg BACKREST_VERSION=2.49 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.49-alpine .
docker build -f Dockerfile_make.alpine --build-arg BACKREST_VERSION=2.49 --build-arg BACKREST_COMPLETION_VERSION=v0.10 -t pgbackrest:2.49-alpine .
```

## Build with Greenplum support
Expand Down