From 0e7b982d7ca9b62e95adae507b3df91fb798f900 Mon Sep 17 00:00:00 2001 From: wlswo Date: Wed, 20 May 2026 12:28:25 +0900 Subject: [PATCH] docs: use {{DRUIDVERSION}} template in docker tutorial port link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Docker tutorial links to the `ports` section of `docker-compose.yml` to show how to override the console port. The link was hardcoded to the 0.21.1 release of the file, so readers who follow it land on a four-year -old version that no longer reflects the current cluster layout. The three other GitHub links in the same page (lines 51, 84, and 134) use the `{{DRUIDVERSION}}` template variable, which the docs build replaces with the current Druid release tag — this one link looks like it was just missed. Replace `0.21.1` with `{{DRUIDVERSION}}` so the link follows the rest of the file, and update the line anchor from `#L125` to `#L129` to point at the router service's `ports:` row in the current file layout. --- docs/tutorials/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/docker.md b/docs/tutorials/docker.md index d77e89832cbc..61825b013414 100644 --- a/docs/tutorials/docker.md +++ b/docs/tutorials/docker.md @@ -100,7 +100,7 @@ is translated into the following option in the Java launch command for the Druid `-Ddruid.metadata.storage.type=postgresql` -Note that Druid uses port 8888 for the console. This port is also used by Jupyter and other tools. To avoid conflicts, you can change the port in the [`ports`](https://github.com/apache/druid/blob/0.21.1/distribution/docker/docker-compose.yml#L125) section of the `docker-compose.yml` file. For example, to expose the console on port 9999 of the host: +Note that Druid uses port 8888 for the console. This port is also used by Jupyter and other tools. To avoid conflicts, you can change the port in the [`ports`](https://github.com/apache/druid/blob/{{DRUIDVERSION}}/distribution/docker/docker-compose.yml#L129) section of the `docker-compose.yml` file. For example, to expose the console on port 9999 of the host: ```yaml container_name: router