Skip to content

Commit 0349e44

Browse files
JTorreGADubhlaoich
andauthored
fix: add v2 v3 docker pull steps (#786)
* fix: add v2 v3 docker pull steps * fix: fix variable anme * fix: clarification --------- Co-authored-by: Alan Dooley <a.dooley@f5.com>
1 parent 7701215 commit 0349e44

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

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

Lines changed: 5 additions & 5 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 version tag that matches your distribution. 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

@@ -62,7 +62,7 @@ sudo docker pull private-registry.nginx.com/nginx-plus/agent:debian
6262

6363
### Start the NGINX Plus container
6464

65-
Start the Docker container to connect it to NGINX One. Replace `YOUR_NGINX_ONE_DATA_PLANE_KEY_HERE` with your data plane key and `VERSION_TAG` with the version tag you pulled.
65+
Start the Docker container to connect it to NGINX One. Replace `YOUR_NGINX_ONE_DATA_PLANE_KEY_HERE` with your data plane key and `version-tag` with the version tag you pulled.
6666

6767
**For NGINX Plus R33 or later**:
6868

@@ -79,7 +79,7 @@ sudo docker run \
7979
--env=NGINX_AGENT_TLS_ENABLE=true \
8080
--restart=always \
8181
--runtime=runc \
82-
-d private-registry.nginx.com/nginx-plus/agent:<VERSION_TAG>
82+
-d private-registry.nginx.com/nginx-plus/agent:<version-tag>
8383
```
8484

8585
<br>

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)