From 499b863c5718f879a6a71ad0c51c80d3cb3aadef Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sat, 31 Dec 2022 10:28:32 +0100 Subject: [PATCH] chore: update to version 2.5.21 --- README.md | 12 +++++++++++- build.sh | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a453f2d..1269051 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # UrBackup Client (internet only) -These are my Docker image source files for a internet-only UrBackup client. +These are my Docker image source files for a internet-only UrBackup client. ## Running @@ -13,3 +13,13 @@ docker run \ -e CLIENT_KEY= mandlm/urbackup-internet-client ``` + +## Updating + +Change `CLIENT_VERSION` in `build.sh` to latest version and run `build.sh`. +After building, push to a docker registry, e.g. + +``` +docker push mandlm/urbackup-internet-client:2.5.21 +docker push mandlm/urbackup-internet-client:latest +``` diff --git a/build.sh b/build.sh index a665d13..acb7c38 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/usr/bin/env sh -CLIENT_VERSION=2.5.20 +CLIENT_VERSION=2.5.21 docker build --build-arg CLIENT_VERSION=${CLIENT_VERSION} --tag mandlm/urbackup-internet-client:latest --tag mandlm/urbackup-internet-client:${CLIENT_VERSION} .