blob: 1920e4211fe4e868e89c4b821c8b66bf8ec9832c [file]
# Copy this file to .env and uncomment the overrides below to run the
# Vulnogram app on the host with MongoDB in a container.
# Tells docker compose to pass this file to the Mongo container as well.
# ENV_VAR_PATH=.env
# Skip production mode: no real CVE allocation, no email sent.
# NODE_ENV=development
# The 'vulnogram-mongo' alias only resolves inside the Compose network,
# so the host process must connect via 127.0.0.1.
# MONGO_HOST=127.0.0.1
MONGO_HOST=vulnogram-mongo
# The callback URL for oauth.apache.org must use TLS is required
# VULNOGRAM_TLS_KEY=key.pem
# VULNOGRAM_TLS_CERT=cert.pem
MONGO_INITDB_ROOT_PASSWORD=admin
MONGO_INITDB_ROOT_USERNAME=admin
MONGO_PORT=27017
START_COMMAND=node init-vulnogram.js && node app.js
VULNOGRAM_ADMIN_CNA_EMAIL=security@example.com
VULNOGRAM_ADMIN_EMAIL=user@example.com
VULNOGRAM_ADMIN_NAME=Example User
VULNOGRAM_ADMIN_PASSWORD=vulnogram
VULNOGRAM_ADMIN_USERNAME=vulnogram
VULNOGRAM_HOST=0.0.0.0
VULNOGRAM_PORT=3555