diff --git a/Dockerfile b/Dockerfile index b7e55e6..aca9212 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apk add --update curl # Download restic. RUN curl -fL -o /tmp/restic.tar.gz \ - https://github.com/restic/restic/releases/download/v0.8.2/restic-0.8.2.tar.gz \ + https://github.com/restic/restic/releases/download/v0.8.3/restic-0.8.3.tar.gz \ && tar -xzf /tmp/restic.tar.gz -C /tmp # Build restic. diff --git a/Makefile b/Makefile index fbcd91f..9ccfb9c 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ IMAGE_NAME := instrumentisto/restic -VERSION ?= 0.8.2 -TAGS ?= 0.8.2,0.8,latest +VERSION ?= 0.8.3 +TAGS ?= 0.8.3,0.8,latest comma := , diff --git a/hooks/post_push b/hooks/post_push index d5c6fa3..1b564cb 100644 --- a/hooks/post_push +++ b/hooks/post_push @@ -9,7 +9,7 @@ tagStart=$(expr index "$IMAGE_NAME" :) repoName=${IMAGE_NAME:0:tagStart-1} # Tag and push image for each additional tag -for tag in {0.8.2,0.8,latest}; do +for tag in {0.8.3,0.8,latest}; do docker tag $IMAGE_NAME ${repoName}:${tag} docker push ${repoName}:${tag} done