Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Follow the steps given below.
<b>wso2/wso2mi</b>: This is the community version of the Micro Integrator Docker image, which is stored in the <a href="https://hub.docker.com/r/wso2/wso2mi">public WSO2 Docker registry</a>. This is selected by default.
</li>
<li>
<b>docker.wso2.com</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://docker.wso2.com/tags.php?repo=wso2mi">private WSO2 Docker registry</a>.
<b>registry.wso2.com</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://registry.wso2.com/harbor/projects">private WSO2 Docker registry</a>.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for registry.wso2.com references to verify consistency

echo "=== Checking registry.wso2.com references ==="
rg -n "registry\.wso2\.com" --type md

echo -e "\n=== Checking for image path patterns ==="
rg -n "registry\.wso2\.com.*wso2mi" --type md

Repository: wso2/docs-ei

Length of output: 1934


Update the Base Image Repository field to show the complete image path.

The create-docker-project.md line 49 shows registry.wso2.com, but other documentation files (create-kubernetes-project.md line 67 and run_in_containers.md line 27) consistently reference the full path as registry.wso2.com/micro-integrator/wso2mi. For consistency and clarity, update the documentation here to show the complete image path that users need to enter in the Base Image Repository field.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@en/micro-integrator/docs/develop/create-docker-project.md` at line 49,
Replace the short image host reference used in the Base Image Repository
description with the full image path: change the text "registry.wso2.com" to
"registry.wso2.com/micro-integrator/wso2mi" in the create-docker-project.md
paragraph that describes the Micro Integrator Docker image so the Base Image
Repository field shows the complete image path (consistent with
create-kubernetes-project.md and run_in_containers.md).

Note that you need a valid <a href="https://wso2.com/subscription/free-trial">WSO2 subscription</a> to use the Docker image with updates.
</li>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Follow the steps given below.
<b>wso2/wso2mi</b>: This is the community version of the Micro Integrator Docker image, which is stored in the <a href="https://hub.docker.com/r/wso2/wso2mi">public WSO2 Docker registry</a>. This is selected by default.
</li>
<li>
<b>docker.wso2.com/wso2mi</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://docker.wso2.com/tags.php?repo=wso2mi">private WSO2 Docker registry</a>.
<b>registry.wso2.com/micro-integrator/wso2mi</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://registry.wso2.com/harbor/projects">private WSO2 Docker registry</a>.
Note that you need a valid <a href="https://wso2.com/subscription/free-trial">WSO2 subscription</a> to use the Docker image with updates.
</li>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Given below are the common security guidelines for deploying a WSO2 product in a
<ul>
<li>Using WUM ( WSO2 Update Manager ) to get the latest fixes. Users with a <a href="https://wso2.com/subscription">subscription</a> can take the latest security fixes via the WUM security channel.</li>
<li>The <a href="https://docs.wso2.com/display/Security/Security+Advisories">WSO2 Security Advisories page</a> and the <a href="https://wso2.com/updates/">U2 Portal</a> has all the security patches for the latest product versions. WSO2 does not issue patches publicly for older product versions. Community users are encouraged to use the latest product version to receive all the security fixes.
</li> <li><a href="https://docker.wso2.com/tags.php?repo=wso2mi">WSO2 Docker repository</a> releases docker images with security fixes. Users with a <a href="https://wso2.com/subscription">subscription</a> can fetch these docker images.</li>
</li> <li><a href="https://registry.wso2.com/harbor/projects">WSO2 Docker repository</a> releases docker images with security fixes. Users with a <a href="https://wso2.com/subscription">subscription</a> can fetch these docker images.</li>
</ul>
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ to systematically test the solution before deploying in production.
Two types of base Docker images are available for the Micro Integrator:

- The Micro Integrator Docker image (with the latest updates) is
available in the [WSO2 Docker Registry](https://docker.wso2.com/).
available in the [WSO2 Docker Registry](https://registry.wso2.com/harbor/projects).

**Note** that you need a valid WSO2 subscription to use the Docker
image with updates. Therefore, you need to provide your log in
Expand All @@ -24,13 +24,13 @@ Two types of base Docker images are available for the Micro Integrator:
**Micro Integrator Docker image (with updates)**

```bash
docker.wso2.com/wso2mi:latest
registry.wso2.com/micro-integrator/wso2mi:latest
```

**Log in to WSO2 Docker Registry**

```bash
docker login docker.wso2.com
docker login registry.wso2.com
```

- The community version of WSO2 Micro Integrator's base Docker image is
Expand Down Expand Up @@ -124,7 +124,7 @@ If you already have **packaged integration artifacts** in a CAR file, you can ma
<strong>Example 1: Docker image with updates</strong>
</div>
<div class="codeContent panelContent pdl">
<div class="sourceCode" id="cb1" data-syntaxhighlighter-params="brush: java; gutter: false; theme: Confluence" data-theme="Confluence" style="brush: java; gutter: false; theme: Confluence"><pre class="sourceCode java"><code class="sourceCode java"><span id="cb1-1"><a href="#cb1-1"></a>FROM docker.<span class="fu">wso2</span>.<span class="fu">com</span>/wso2mi:<span class="fl">1.2.</span><span class="dv">0</span></span></code></pre></div>
<div class="sourceCode" id="cb1" data-syntaxhighlighter-params="brush: java; gutter: false; theme: Confluence" data-theme="Confluence" style="brush: java; gutter: false; theme: Confluence"><pre class="sourceCode java"><code class="sourceCode java"><span id="cb1-1"><a href="#cb1-1"></a>FROM registry.<span class="fu">wso2</span>.<span class="fu">com</span>/micro-integrator/wso2mi:<span class="fl">1.2.</span><span class="dv">0</span></span></code></pre></div>
</div>
</div>
<div class="code panel pdl" style="border-width: 1px;">
Expand Down