Trivy Scanner

Trivy is the well known tool used to discover common misconfigurations & the vulnerabilities present in the docker based container images.

Installing Trivy

sudo pip3 install trivy

if you get the pip based virtual environment error then we can solve the issue using :

Python3 & Pip Installationchevron-right

Using Trivy

docker pull <image>
trivy image <image>

other useful docker commands can be found here :

Docker 🛳chevron-right

Last updated