Configuring Anchore

Introduction

Configuring Anchore Enterprise starts with configuring the core Anchore Engine deployment, along with specific configurations for each enterprise service. Enterprise deployments using the trial quickstart (docker-compose) or production (using Helm or other) are designed to run by default with no modifications necessary to get started, though many options are available to tune your production deployment to fit your needs. To start, please first refer to the Anchore Engine configuration guide, followed with finding enterprise service specific configuration options within their own sections.

NOTE - The latest default configuration file can always be extracted from the Enterprise container to review the latest options and environment overrides using the following process:

# docker login
# docker pull docker.io/anchore/enterprise:latest
# docker create --name ae docker.io/anchore/enterprise:latest
# docker cp ae:/config/config.yaml /tmp/my-config.yaml
# docker rm ae
# cat /tmp/my-config.yaml
...
...


Last modified November 4, 2018: Add main content from migration. (f1c35a7)