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 postgres-appliance/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM $BASE_IMAGE as dependencies-builder

ARG DEMO

ENV WALG_VERSION=v3.0.5
ENV WALG_VERSION=v3.0.8

COPY build_scripts/dependencies.sh /builddeps/

Expand Down
4 changes: 2 additions & 2 deletions postgres-appliance/build_scripts/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ apt-get install -y curl ca-certificates
mkdir /builddeps/wal-g

if [ "$ARCH" = "amd64" ]; then
PKG_NAME='wal-g-pg-ubuntu-20.04-amd64'
PKG_NAME='wal-g-pg-22.04-amd64'
else
PKG_NAME='wal-g-pg-ubuntu-20.04-aarch64'
PKG_NAME='wal-g-pg-22.04-aarch64'
fi

curl -sL "https://github.com/wal-g/wal-g/releases/download/$WALG_VERSION/$PKG_NAME.tar.gz" \
Expand Down