-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 adding missing env var to docker-compose.yaml (#5011)
Co-authored-by: Andrei Neagu <[email protected]>
- Loading branch information
Showing
3 changed files
with
12 additions
and
0 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 |
---|---|---|
|
@@ -47,6 +47,7 @@ DIRECTOR_V2_DEV_FEATURES_ENABLED=0 | |
DYNAMIC_SIDECAR_IMAGE=${DOCKER_REGISTRY:-itisfoundation}/dynamic-sidecar:${DOCKER_IMAGE_TAG:-latest} | ||
DYNAMIC_SIDECAR_LOG_LEVEL=DEBUG | ||
DYNAMIC_SIDECAR_PROMETHEUS_SERVICE_LABELS={} | ||
DYNAMIC_SIDECAR_PROMETHEUS_MONITORING_NETWORKS=[] | ||
|
||
FUNCTION_SERVICES_AUTHORS='{"UN": {"name": "Unknown", "email": "[email protected]", "affiliation": "unknown"}}' | ||
|
||
|
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,10 @@ | ||
# Environment variables management | ||
|
||
As a developer you will need to extend the current env vars for a service. | ||
|
||
The following rules must be followed: | ||
|
||
1. for each service that requires it, add it to the `services/docker-compose.yml` file (such as `MY_VAR=${MY_VAR}`) | ||
2. add a meaningful default value for development inside `.env-devel` so that developers can work, and that `osparc-simcore` is **self contained**. | ||
- **NOTE** if the variable has a default inside the code, put the same value here | ||
3. inside the repo where devops keep all the secrets follow the instructions to add the new env var |
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