Skip to content
Merged
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
18 changes: 9 additions & 9 deletions admin_guide/install/twistlock_container_images.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endif::compute_edition[]
[.task]
=== Retrieving Prisma Cloud images using basic auth

Authenticate using _docker login_, then retrieve the Prisma Cloud images using _docker pull_.
Authenticate using _docker login_ or _podman login_, then retrieve the Prisma Cloud images using _docker pull_ or _podman pull_.
For basic authorization, the registry is accessible at _registry.twistlock.com_.

[IMPORTANT]
Expand All @@ -47,7 +47,7 @@ registry.twistlock.com/twistlock/defender:defender_19_07_363.
[.procedure]
. Authenticate with the registry.
+
$ docker login registry.twistlock.com
$ docker (or podman) login registry.twistlock.com
Username:
Password:
+
Expand All @@ -56,13 +56,13 @@ Where *Username* can be any string, and *Password* must be your access token.
ifdef::compute_edition[]
. Pull the Console image from the Prisma Cloud registry.

$ docker pull registry.twistlock.com/twistlock/console:console_<VERSION>
$ docker (or podman) pull registry.twistlock.com/twistlock/console:console_<VERSION>

endif::compute_edition[]

. Pull the Defender image from the Prisma Cloud registry.

$ docker pull registry.twistlock.com/twistlock/defender:defender_<VERSION>
$ docker (or podman) pull registry.twistlock.com/twistlock/defender:defender_<VERSION>


[.task]
Expand All @@ -71,8 +71,8 @@ endif::compute_edition[]
Retrieve Prisma Cloud images with a single command by embedding your access token into the registry URL.
For URL authorization, the registry is accessible at _registry-auth.twistlock.com_.

By embedding your access token into the registry URL, you only need to run _docker pull_.
The _docker login_ command isn't required.
By embedding your access token into the registry URL, you only need to run _docker pull_ or _podman pull_.
The _docker login_ or _podman login_ command isn't required.

The format for the registry URL is: `registry-auth.twistlock.com/tw_<ACCESS-TOKEN>/<IMAGE>:<TAG>`

Expand All @@ -89,7 +89,7 @@ registry.twistlock.com/twistlock/defender:defender_19_07_363.
*Prerequisites:*

* You have a Prisma Cloud access token.
* The Docker client requires that repository names be lowercase.
* The Docker or Podman client requires that repository names be lowercase.
Therefore, all characters in your access token must be lowercase.
To convert your access token to lowercase characters, use the following command:
+
Expand All @@ -99,12 +99,12 @@ To convert your access token to lowercase characters, use the following command:
ifdef::compute_edition[]
. Pull the Console image from the Prisma Cloud registry.

$ docker pull \
$ docker (or podman) pull \
registry-auth.twistlock.com/tw_<ACCESS-TOKEN>/twistlock/console:console_<VERION>

endif::compute_edition[]

. Pull the Defender image from the Prisma Cloud registry.

$ docker pull \
$ docker (or podman) pull \
registry-auth.twistlock.com/tw_<ACCESS-TOKEN>/twistlock/defender:defender_<VERSION>