-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matej Groman
committed
May 2, 2023
1 parent
8b6465c
commit 5d8afd6
Showing
8 changed files
with
144 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Docker Compose Environment Variables Example | ||
# ===================================== | ||
# --------required variables----------- | ||
# ===================================== | ||
NEO4J_PASSWORD= | ||
REDIS_PASSWORD= | ||
|
||
# For deployment uisng Azure Containers | ||
# ---------------------- | ||
# Name of created Azure Container Registry | ||
ACR_NAME= | ||
# Domain name for the application. It will | ||
# be accessible under | ||
# http://<AZURE_DOMAIN_NAME>.REGION.azurecontainer.io:3000 | ||
AZURE_DOMAIN_NAME=depvis | ||
|
||
# --------optional variables----------- | ||
# Neo4J Database | ||
# ===================================== | ||
NEO4J_HOST=neo4j://neo4j:7687 | ||
|
||
# Redis Cache | ||
# ===================================== | ||
REDIS_HOST=redis-cache | ||
REDIS_PORT=6379 | ||
|
||
# DepVis Docker Port | ||
# ===================================== | ||
# Specify public facing port for Docker container | ||
DEPVIS_PORT=3000 | ||
|
||
# ===================================== | ||
# DepVis other environmental variables | ||
# ===================================== | ||
|
||
# Vulnerability database | ||
# ---------------------- | ||
# Specify default vulnerability database. Currently supported are | ||
# Sonatype OSS | ||
VULN_DB=Sonatype | ||
# or OSV | ||
# VULN_DB=osv | ||
|
||
# Sonatype OSS databse authentication token | ||
# ---------------------- | ||
# It is not required, but recommended. Wihout token API is rate limited | ||
# Learn how to obtain token here: https://ossindex.sonatype.org/doc/api-token | ||
SONATYPE_OSS_AUTH= | ||
|
||
# CORS origin - use when API and frontend are on different host | ||
# ---------------------- | ||
# CORS_ORIGIN=* | ||
|
||
# GraphQL Server Uri - used for server side requests | ||
# In Docker environment, port is usually diferent for frontend and internal requests | ||
# ---------------------- | ||
NEXT_PUBLIC_SERVER_URI=http://localhost:3000 | ||
|
||
# Excluded nodes Regex Default value - used to separate system nodes from other | ||
# ---------------------- | ||
# NEXT_PUBLIC_GRAPH_EXCLUDED_REGEX=.*ystem | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters