chore: update to version 2.5.21
This commit is contained in:
parent
7152a875c5
commit
499b863c57
2 changed files with 12 additions and 2 deletions
12
README.md
12
README.md
|
@ -1,6 +1,6 @@
|
||||||
# UrBackup Client (internet only)
|
# 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
|
## Running
|
||||||
|
|
||||||
|
@ -13,3 +13,13 @@ docker run \
|
||||||
-e CLIENT_KEY=<this client's auth key>
|
-e CLIENT_KEY=<this client's auth key>
|
||||||
mandlm/urbackup-internet-client
|
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
|
||||||
|
```
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env sh
|
#!/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} .
|
docker build --build-arg CLIENT_VERSION=${CLIENT_VERSION} --tag mandlm/urbackup-internet-client:latest --tag mandlm/urbackup-internet-client:${CLIENT_VERSION} .
|
||||||
|
|
Loading…
Reference in a new issue