Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anchore/anchore-cli
Simple command-line client to the Anchore Engine service
https://github.com/anchore/anchore-cli
Last synced: about 2 months ago
JSON representation
Simple command-line client to the Anchore Engine service
- Host: GitHub
- URL: https://github.com/anchore/anchore-cli
- Owner: anchore
- License: apache-2.0
- Archived: true
- Created: 2017-09-05T22:27:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T17:45:18.000Z (6 months ago)
- Last Synced: 2024-08-12T00:49:22.245Z (5 months ago)
- Language: Python
- Size: 638 KB
- Stars: 113
- Watchers: 23
- Forks: 54
- Open Issues: 17
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-container-security - anchore-cli
- awesome-devsecops-russia - Anchore
README
Important
========**As of 2024, Anchore CLI is no longer maintained.** There will be no future versions released. Users are advised to use AnchoreCTL when interacting with Anchore Enterprise.
For users interested in the supported commercial solution for container scanning and complaiance, schedule a demo to see Anchore Enterprise's broad set of enterprise capabilities including SBOM management, vulnerability management, and compliance management.
Overview
========The Anchore CLI provides a command line interface on top of the `Anchore Engine `_ REST API.
Using the Anchore CLI users can manage and inspect images, policies, subscriptions and registries for the following:
**Supported Operating Systems**
* Alpine
* Amazon Linux 2
* CentOS
* Debian
* Google Distroless
* Oracle Linux
* Red Hat Enterprise Linux
* Red Hat Universal Base Image (UBI)
* Ubuntu**Supported Packages**
* GEM
* Java Archive (jar, war, ear)
* NPM
* Python (PIP)Installing Anchore CLI from source
==================================The Anchore CLI can be installed from source using the Python pip utility
.. code::
git clone https://github.com/anchore/anchore-cli
cd anchore-cli
pip install --user --upgrade .Or can be installed from the installed form source from the Python `PyPI `_ package repository.
Installing Anchore CLI on CentOS and Red Hat Enterprise Linux
=============================================================.. code::
yum install epel-release
yum install python-pip
pip install anchorecliInstalling Anchore CLI on Debian and Ubuntu
===========================================.. code::
apt-get update
apt-get install python-pip
pip install anchorecli
Note make sure ~/.local/bin is part of your PATH or just export it directly: export PATH="$HOME/.local/bin/:$PATH"Installing Anchore CLI on Mac OS / OS X
===========================================Use Python's `pip` package manager:
.. code::
sudo easy_install pip
pip install --user anchorecli
export PATH=${PATH}:${HOME}/Library/Python/2.7/binTo ensure `anchore-cli` is readily available in subsequent terminal sessions, remember to add that last line to your shell profile (`.bash_profile` or equivalent).
To update `anchore-cli` later:
.. code::
pip install --user --upgrade anchorecli
Configuring the Anchore CLI
===========================By default the Anchore CLI will try to connect to the Anchore Engine at ``http://localhost/v1`` with no authentication.
The username, password and URL for the server can be passed to the Anchore CLI as command line arguments... code::
--u TEXT Username eg. admin
--p TEXT Password eg. foobar
--url TEXT Service URL eg. http://localhost:8228/v1Rather than passing these parameters for every call to the cli they can be stores as environment variables.
.. code::
ANCHORE_CLI_URL=http://myserver.example.com:8228/v1
ANCHORE_CLI_USER=admin
ANCHORE_CLI_PASS=foobarCommand line examples
=====================Add an image to the Anchore Engine
.. code::
anchore-cli image add docker.io/library/debian:latest
Wait for an image to transition to ``analyzed``
.. code::
anchore-cli image wait docker.io/library/debian:latest
List images analyzed by the Anchore Engine
.. code::
anchore-cli image list
Get summary information for a specified image
.. code::
anchore-cli image get docker.io/library/debian:latest
Perform a vulnerability scan on an image
.. code::
anchore-cli image vuln docker.io/library/debian:latest os
Perform a policy evaluation on an image
.. code::
anchore-cli evaluate check docker.io/library/debian:latest --detail
List operating system packages present in an image
.. code::
anchore-cli image content docker.io/library/debian:latest os
Subscribe to receive webhook notifications when new CVEs are added to an update
.. code::
anchore-cli subscription activate vuln_update docker.io/library/debian:latest
More Information
================For further details on use of the Anchore CLI with the Anchore Engine please refer to `Anchore Engine `_