Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker: use latest tag for latest stable image #388

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/examples-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -508,9 +508,9 @@ The highlights (👀):
- has auto-selection of the best SIMD if user specifies `best` as the `<binary id>`;
- 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

Expand Down
Loading