From 70669bb6084186a7b586107fc88b9f4eb90a4e37 Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Thu, 12 May 2022 09:37:05 +0400 Subject: [PATCH] update to restic 0.13.1 & change registry --- Dockerfile | 2 +- build.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f0b2936..9636c8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certific COPY --from=alpine /usr/share/zoneinfo /usr/share/zoneinfo # Get restic executable -ENV RESTIC_VERSION=0.12.0 +ENV RESTIC_VERSION=0.13.1 ADD https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_linux_amd64.bz2 / RUN bzip2 -d restic_${RESTIC_VERSION}_linux_amd64.bz2 && mv restic_${RESTIC_VERSION}_linux_amd64 /bin/restic && chmod +x /bin/restic diff --git a/build.sh b/build.sh index dfabfb8..abad267 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/sh -docker build -t llehouerou/restic-backup . +docker build -t registry.lehouerou.net/restic-backup . rc=$? if [[ ${rc} == 0 ]]; then - docker push llehouerou/restic-backup + docker push registry.lehouerou.net/restic-backup fi