m19v
m19v

Reputation: 2192

Rancher-Desktop: "docker: 'scout' is not a docker command."

I am using Rancher-Desktop and get the following error when I try to analyse docker images for vulnerabilities locally with docker scout cves fs://.

docker: 'scout' is not a docker command.
See 'docker --help'

Is the docker scout part of Docker-Desktop only? Can I use docker scout with Rancher-Desktop as e.g. plugin, extension etc, similar to other docker commands?

Upvotes: 0

Views: 911

Answers (1)

BMitch
BMitch

Reputation: 264821

Docker Scout is packaged with Docker Desktop. You can install it separately following Docker's instructions:

curl -fsSL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh -o install-scout.sh
sh install-scout.sh

Upvotes: 2

Related Questions