Skip to content

Commit

Permalink
Merge pull request #45 from woblerr/update_backrest_to_2_43
Browse files Browse the repository at this point in the history
Up pgBackRest version to 2.43 in docker image.
  • Loading branch information
woblerr authored Dec 28, 2022
2 parents 9a3ecd8 + bf67964 commit f0d8ccb
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.41"
docker_backrest_version: "v0.15"
backrest_version: "2.43"
docker_backrest_version: "v0.16"
build_platforms: "linux/amd64,linux/arm64"
steps:
- name: Set up go 1.18
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.41"
ARG DOCKER_BACKREST_VERSION="v0.15"
ARG BACKREST_VERSION="2.43"
ARG DOCKER_BACKREST_VERSION="v0.16"
ARG REPO_BUILD_TAG="unknown"

FROM golang:1.18-buster 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.41
DOCKER_BACKREST_VERSION := v0.15
BACKREST_VERSION := 2.43
DOCKER_BACKREST_VERSION := v0.16
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 @@ -196,7 +196,7 @@ For a significant number of stanzas, this may require additional time to collect

### Building and running docker

By default, pgBackRest version is `2.41`. Another version can be specified via arguments.
By default, pgBackRest version is `2.43`. Another version can be specified via arguments.
For base image used [docker-pgbackrest](https:/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.41"
ARG DOCKER_BACKREST_VERSION="v0.15"
ARG BACKREST_VERSION="2.43"
ARG DOCKER_BACKREST_VERSION="v0.16"
ARG PG_VERSION="13"

FROM golang:1.18-buster AS builder
Expand Down

0 comments on commit f0d8ccb

Please sign in to comment.