aboutsummaryrefslogtreecommitdiffstats
path: root/development/.env
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-09-04 16:32:37 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-09-04 16:32:37 +0200
commit1a23a1bcdf17ba4cf1cafb8e65babd1ad8666e59 (patch)
treeb4b4313abfbcc535c927a57e4d2e0d2227f1528b /development/.env
parentd5732759bf7e90076c8fba189ae12a2a46fbb32e (diff)
Adjust mongo related environment variables in bff docker-compose file
- services are expecting MONGO_ prefix instead of <SERVICENAME>_ for mongo related settings - rename requests file Issue-ID: PORTALNG-55 Change-Id: I371485e5430955907de7ee58c60fd91dd021c2f2 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'development/.env')
-rw-r--r--development/.env21
1 files changed, 10 insertions, 11 deletions
diff --git a/development/.env b/development/.env
index 2775969..2a2a73d 100644
--- a/development/.env
+++ b/development/.env
@@ -23,18 +23,17 @@ MONGO_VERSION=latest
# preferences
PREFERENCES_IMAGE_NAME=preferences
PREFERENCES_IMAGE_TAG=latest
-PREFERENCES_USERNAME=root
-PREFERENCES_PASSWORD=password
-PREFERENCES_DATABASE=Preferences
-PREFERENCES_HOST=mongo-preferences
-PREFERENCES_PORT=27017
+PREFERENCES_MONGO_USERNAME=root
+PREFERENCES_MONGO_PASSWORD=password
+PREFERENCES_MONGO_DATABASE=Preferences
+PREFERENCES_MONGO_HOST=mongo-preferences
+PREFERENCES_MONGO_PORT=27017
# history
HISTORY_IMAGE_NAME=history
HISTORY_IMAGE_TAG=latest
-HISTORY_USERNAME=root
-HISTORY_PASSWORD=password
-HISTORY_DATABASE=History
-HISTORY_HOST=mongo-history
-HISTORY_PORT=27017
-
+HISTORY_MONGO_USERNAME=root
+HISTORY_MONGO_PASSWORD=password
+HISTORY_MONGO_DATABASE=History
+HISTORY_MONGO_HOST=mongo-history
+HISTORY_MONGO_PORT=27017 \ No newline at end of file