Skip to content

Commit d1c1456

Browse files
committed
fix: add v2 v3 docker pull steps
1 parent a9282b0 commit d1c1456

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

content/nginx-one/connect-instances/connect-nginx-plus-container-images-to-nginx-one.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ sudo docker login private-registry.nginx.com --username=YOUR_JWT_HERE --password
4242

4343
### Pull the NGINX Plus image
4444

45-
Pull the NGINX Plus image from the private registry. Replace `VERSION_TAG` with the desired version, such as `alpine`, `debian`, or `ubi`.
45+
Pull the NGINX Plus image from the private registry. Replace `<version-tag>` with the desired version, such as `alpine`, `debian`, or `ubi`.
4646

4747
```sh
48-
sudo docker pull private-registry.nginx.com/nginx-plus/agent:VERSION_TAG
48+
docker pull private-registry.nginx.com/nginx-plus/agentv3:<version-tag>
4949
```
5050

51-
You must specify a version tag. The `latest` tag is not supported. Learn more in the [Deploying NGINX and NGINX Plus on Docker]({{< ref "/nginx/admin-guide/installing-nginx/installing-nginx-docker.md#pull-the-image" >}}) guide.
51+
You must specify a distribution tag. The `latest` tag is not supported. Learn more in the [Deploying NGINX and NGINX Plus on Docker]({{< ref "/nginx/admin-guide/installing-nginx/installing-nginx-docker.md#pull-the-image" >}}) guide.
5252

5353
<br>
5454

content/nginx-one/nginx-configs/config-sync-groups/manage-config-sync-groups.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,9 @@ When adding a new NGINX instance that is not yet registered with NGINX One, you
162162
- From the **OS Type** list, choose the appropriate operating system for your Docker image.
163163
- After selecting the OS, run the provided command to pull the Docker image.
164164

165-
**Note**: Subject to availability, you can modify the `agent: <VERSION_TAG>` to match the specific NGINX Plus version, OS type, and OS version you need. For example, you might use `agent: r32-ubi-9`. For more details on version tags and how to pull an image, see [Deploying NGINX and NGINX Plus on Docker]({{< ref "nginx/admin-guide/installing-nginx/installing-nginx-docker.md#pull-the-image" >}}).
165+
**Note**: Subject to availability, you can modify the `agentv3:<VERSION_TAG>` to match the specific NGINX Plus version, OS type, and OS version you need. For example, you might use `agentv3:r32-ubi-9`. For more details on version tags and how to pull an image, see [Deploying NGINX and NGINX Plus on Docker]({{< ref "nginx/admin-guide/installing-nginx/installing-nginx-docker.md#pull-the-image" >}}).
166166

167167

168-
- From the **OS Type** list, choose the appropriate operating system for your Docker image.
169-
- After selecting the OS, run the provided command to pull the Docker image.
170-
171-
**Note**: Subject to availability, you can modify the `agent: <VERSION_TAG>` to match the specific NGINX Plus version, OS type, and OS version you need. For example, you might use `agent: r32-ubi-9`. For more details on version tags and how to pull an image, see [Deploying NGINX and NGINX Plus on Docker]({{< ref "nginx/admin-guide/installing-nginx/installing-nginx-docker.md#pull-the-image" >}}).
172-
173168
10. Run the provided command, which includes the data plane key, in your NGINX instance terminal to start the Docker container.
174169

175170
11. Select **Done** to complete the process.

content/nginx/admin-guide/installing-nginx/installing-nginx-docker.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,24 +156,36 @@ For NGINX Plus, run:
156156
docker pull private-registry.nginx.com/nginx-plus/base:<version-tag>
157157
```
158158

159-
For NGINX Plus with NGINX Agent, run:
159+
For NGINX Plus with NGINX Agent version 2, run:
160160

161161
```shell
162162
docker pull private-registry.nginx.com/nginx-plus/agent:<version-tag>
163163
```
164164

165+
For NGINX Plus with NGINX Agent version 3, run:
166+
167+
```shell
168+
docker pull private-registry.nginx.com/nginx-plus/agentv3:<version-tag>
169+
```
170+
165171
For NGINX Plus installed from `nginx` user (rootless installation), run:
166172

167173
```shell
168174
docker pull private-registry.nginx.com/nginx-plus/rootless-base:<version-tag>
169175
```
170176

171-
For NGINX Plus with NGINX Agent installed from `nginx` user (rootless installation), run:
177+
For NGINX Plus with NGINX Agent version 2 installed from `nginx` user (rootless installation), run:
172178

173179
```shell
174180
docker pull private-registry.nginx.com/nginx-plus/rootless-agent:<version-tag>
175181
```
176182

183+
For NGINX Plus with NGINX Agent version 3 installed from `nginx` user (rootless installation), run:
184+
185+
```shell
186+
docker pull private-registry.nginx.com/nginx-plus/rootless-agentv3:<version-tag>
187+
```
188+
177189
For NGINX modules, run:<!-- Is this enough info?-->
178190

179191
```shell

0 commit comments

Comments
 (0)