Skip to content

Commit

Permalink
Merge pull request #96 from woblerr/bump_backrest_ver
Browse files Browse the repository at this point in the history
Bump default pgBackRest version to v2.54.2.
  • Loading branch information
woblerr authored Jan 30, 2025
2 parents 512815d + 47c3af9 commit a4eaddd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build:
runs-on: ubuntu-latest
env:
backrest_version: "2.53"
docker_backrest_version: "v0.27"
backrest_version: "2.54.2"
docker_backrest_version: "v0.31"
build_platforms: "linux/amd64,linux/arm64"
steps:
- name: Set up go 1.23
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BACKREST_VERSION="2.53"
ARG DOCKER_BACKREST_VERSION="v0.27"
ARG BACKREST_VERSION="2.54.2"
ARG DOCKER_BACKREST_VERSION="v0.31"
ARG REPO_BUILD_TAG="unknown"

FROM golang:1.23-bookworm AS builder
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ BRANCH := $(subst /,-,$(BRANCH_FULL))
GIT_REV := $(shell git describe --abbrev=7 --always)
SERVICE_CONF_DIR := /etc/systemd/system
HTTP_PORT := 9854
BACKREST_VERSION := 2.53
DOCKER_BACKREST_VERSION := v0.27
BACKREST_VERSION := 2.54.2
DOCKER_BACKREST_VERSION := v0.31
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
DOCKER_CONTAINER_E2E := $(shell docker ps -a -q -f name=$(APP_NAME)_e2e)
HTTP_PORT_E2E := $(shell echo $$((10000 + ($$RANDOM % 10000))))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ The `pgbackrest_backup_references` metric can be a little annoying. This metric

### Building and running docker

By default, pgBackRest version is `2.53`. Another version can be specified via arguments.
By default, pgBackRest version is `2.54.2`. Another version can be specified via arguments.
For base image used [docker-pgbackrest](https://github.com/woblerr/docker-pgbackrest) image.

Environment variables supported by this image:
Expand Down
4 changes: 2 additions & 2 deletions e2e_tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BACKREST_VERSION="2.53"
ARG DOCKER_BACKREST_VERSION="v0.27"
ARG BACKREST_VERSION="2.54.2"
ARG DOCKER_BACKREST_VERSION="v0.31"
ARG PG_VERSION="16"

FROM golang:1.23-bookworm AS builder
Expand Down

0 comments on commit a4eaddd

Please sign in to comment.