Back to Geneos FAQ

Internal documentation only

This page has been marked as draft.

Netprobe - How to pull Docker collection-agent or netprobe images and save it locally

# 1. Check local images

docker login docker.itrsgroup.com docker images | grep collection-agent

docker images | grep netprobe

# 2. Check registry repositories

curl -u jdavid@itrsgroup.com: https://docker.itrsgroup.com/v2/_catalog

# 3. List Collection Agent tags curl -u jdavid@itrsgroup.com: https://docker.itrsgroup.com/v2/collection/collection-agent/tags/list

# 4. Pull images from registry docker pull docker.itrsgroup.com/netprobe:latest docker pull docker.itrsgroup.com/netprobe:7.8.3 docker pull docker.itrsgroup.com/collection/collection-agent:latest docker pull docker.itrsgroup.com/collection/collection-agent:6.4.1-jre21-r0

# 5. Save images to tar docker save -o netprobe_7.8.3.tar docker.itrsgroup.com/netprobe:7.8.3 docker save -o collection-agent_6.4.1.tar docker.itrsgroup.com/collection/collection-agent:6.4.1-jre21-r0 docker save -o collection-agent_latest.tar docker.itrsgroup.com/collection/collection-agent:latest

# 6. Save images as compressed tar.gz docker save docker.itrsgroup.com/collection/collection-agent:latest | gzip > collection-agent_latest.tar.gz docker save docker.itrsgroup.com/collection/collection-agent:6.5.0-jre21-r0 | gzip > collection-agent_6.5.0.tar.gz

# 7. Load compressed image back gunzip -c collection-agent_latest.tar.gz | docker load

# KEY NOTES # - Netprobe uses version 7.x (e.g. 7.8.3) # - Collection Agent uses 5.x–6.x versions (no 7.x exists) # - Always verify with docker pull before saving if unsure

List all available Images from our docker repository:

The following command:

curl -u jdavid@itrsgroup.com:<password> https://docker.itrsgroup.com/v2/_catalog

Returns a list of all available images from docker.itrsgroup.com. However, the current output is returned in a raw, non-user-friendly JSON format, as shown below:

Geneos - Netprobe - How to pull Docker collection-agent or netprobe images and save it locally.

If you want a more user-friendly and readable output, you can use the following command:

curl -u jdavid@itrsgroup.com:<password> https://docker.itrsgroup.com/v2/_catalog | jq

Geneos - Netprobe - How to pull Docker collection-agent or netprobe images and save it locally.

["Geneos"] ["FAQ"]

Was this topic helpful?