diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b64932a..7dbedbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index 39852de..a52721a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Makefile b/Makefile index 854fb87..37e1f30 100755 --- a/Makefile +++ b/Makefile @@ -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)))) diff --git a/README.md b/README.md index 6b1d46a..aad3624 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/e2e_tests/Dockerfile b/e2e_tests/Dockerfile index 2ff3551..9552c7f 100644 --- a/e2e_tests/Dockerfile +++ b/e2e_tests/Dockerfile @@ -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