From c86b782c11bc18e62e535bd872a969ec93fc06bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claudio=20Andr=C3=A9?= Date: Thu, 16 May 2024 17:55:06 -0300 Subject: [PATCH] Docker: use `latest` tag for latest stable image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docker's `latest` tag will mean the latest stable version released (in our case, a rolling release) of a Docker Image. Close #385. Signed-off-by: Claudio AndrĂ© --- .github/workflows/docker.yml | 4 ++-- docs/examples-docker.md | 2 +- readme.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a5d7974a..c61ee6d5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -36,10 +36,10 @@ name: Docker description: "The image tag" required: true type: choice - default: "latest" + default: "bleeding" options: + - bleeding - latest - - rolling extra: description: "Add another image tag" type: string diff --git a/docs/examples-docker.md b/docs/examples-docker.md index 8dbfa7d6..acf2e422 100644 --- a/docs/examples-docker.md +++ b/docs/examples-docker.md @@ -16,7 +16,7 @@ Using the `--rm` flag to clean up the container and remove the file system after ```bash docker run --rm ghcr.io/openwall/john # => uses the best SIMD available, tag 'latest' can be omitted - docker run --rm ghcr.io/openwall/john:rolling # => uses the latest rolling release + docker run --rm ghcr.io/openwall/john:bleeding # => uses the latest bleeding release docker run --rm ghcr.io/openwall/john:latest best # => uses the best SIMD available docker run --rm ghcr.io/openwall/john:latest avx2 --list=build-info docker run --rm ghcr.io/openwall/john:latest avx2-omp --list=build-info diff --git a/readme.md b/readme.md index 0b9ce46f..8af92ebb 100644 --- a/readme.md +++ b/readme.md @@ -495,7 +495,7 @@ Run John the Ripper and check if it is working: ```bash docker run ghcr.io/openwall/john # => uses the best SIMD available, tag 'latest' can be omitted - docker run ghcr.io/openwall/john:rolling # => uses the latest rolling release + docker run ghcr.io/openwall/john:bleeding # => uses the latest bleeding release docker run ghcr.io/openwall/john:latest best # => uses the best SIMD available ``` @@ -508,9 +508,9 @@ The highlights (đŸ‘€): - has auto-selection of the best SIMD if user specifies `best` as the ``; - example: `docker run ghcr.io/openwall/john:latest best -list=build-info`. - the released version of John 1.9.0 Jumbo 1+ (is a rolling release): - - install from the command-line: `docker pull ghcr.io/openwall/john:rolling`. -- the development version: - install from the command-line: `docker pull ghcr.io/openwall/john:latest`. +- the development version: + - install from the command-line: `docker pull ghcr.io/openwall/john:bleeding`. ### Docker Image Deployments