From da0b85d06eb77d04501819c5a4881f9c215e7c0a Mon Sep 17 00:00:00 2001 From: Justin Mclean Date: Thu, 3 Sep 2026 02:29:39 +0000 Subject: [PATCH] docs: use the latest tag in the About page docker run example The paragraph above this example explains that latest images are the stable releases and edge images track master, and the Versioning section says edge builds are not recommended for production use. The example then ran apache/iggy:edge, so copying it gave a new user an unstable build. The example is there to show the required SYS_NICE, seccomp and memlock settings, not to pick a tag. Getting Started already uses latest. --- content/docs/introduction/about.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/introduction/about.mdx b/content/docs/introduction/about.mdx index 46a109df1f..639e106755 100644 --- a/content/docs/introduction/about.mdx +++ b/content/docs/introduction/about.mdx @@ -127,7 +127,7 @@ ulimits: Or when running with `docker run`: ``` -docker run --cap-add=SYS_NICE --security-opt seccomp=unconfined --ulimit memlock=-1:-1 apache/iggy:edge +docker run --cap-add=SYS_NICE --security-opt seccomp=unconfined --ulimit memlock=-1:-1 apache/iggy:latest ``` ### Helm Charts