diff --git a/build/package/snap/snapcraft.yaml b/build/package/snap/snapcraft.yaml index 5de84cd6..b526b3e2 100644 --- a/build/package/snap/snapcraft.yaml +++ b/build/package/snap/snapcraft.yaml @@ -1,7 +1,7 @@ --- name: n3dr base: core20 -version: 7.3.1 +version: 7.3.2 summary: Nexus3 Disaster Recovery description: | Download all artifacts at once or migrate automatically from Nexus to Nexus. diff --git a/docs/README.md b/docs/README.md index 931db96a..3049604e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -238,7 +238,7 @@ n3dr config \ ### Build ```bash -docker build -t utrecht/n3dr:7.3.1 . +docker build -t utrecht/n3dr:7.3.2 . ``` [![dockeri.co](https://dockeri.co/image/utrecht/n3dr)](https://hub.docker.com/r/utrecht/n3dr) @@ -248,7 +248,7 @@ docker build -t utrecht/n3dr:7.3.1 . ```bash docker run -it \ -v /home/${USER}/.n3dr:/root/.n3dr \ - -v /tmp/n3dr:/tmp/n3dr utrecht/n3dr:7.3.1 + -v /tmp/n3dr:/tmp/n3dr utrecht/n3dr:7.3.2 ``` ### Upload @@ -257,7 +257,7 @@ docker run -it \ docker run -it \ --entrypoint=/bin/ash \ -v /home/${USER}/.n3dr:/root/.n3dr \ - -v /tmp/n3dr:/tmp/n3dr utrecht/n3dr:7.3.1 + -v /tmp/n3dr:/tmp/n3dr utrecht/n3dr:7.3.2 ``` navigate to the repository folder, e.g. `/tmp/n3dr/download*/` and upload: diff --git a/docs/quickstarts/snippets/n3dr/DOWNLOAD.md b/docs/quickstarts/snippets/n3dr/DOWNLOAD.md index 8e8047aa..b9140867 100644 --- a/docs/quickstarts/snippets/n3dr/DOWNLOAD.md +++ b/docs/quickstarts/snippets/n3dr/DOWNLOAD.md @@ -1,12 +1,12 @@ # Download -Download the [latest N3DR binary](https://github.com/030/n3dr/releases/tag/7.3.1): +Download the [latest N3DR binary](https://github.com/030/n3dr/releases/tag/7.3.2): ```bash cd /tmp && \ -curl -L https://github.com/030/n3dr/releases/download/7.3.1/n3dr-ubuntu-latest \ +curl -L https://github.com/030/n3dr/releases/download/7.3.2/n3dr-ubuntu-latest \ -o n3dr-ubuntu-latest && \ -curl -L https://github.com/030/n3dr/releases/download/7.3.1/\ +curl -L https://github.com/030/n3dr/releases/download/7.3.2/\ n3dr-ubuntu-latest.sha512.txt \ -o n3dr-ubuntu-latest.sha512.txt && \ sha512sum -c n3dr-ubuntu-latest.sha512.txt && \