Added a better comment letting know why certain env vars + ports shouldn't be changed. Also modified .env file.

This commit is contained in:
K
2025-07-23 17:43:37 +05:30
parent d84c2879cd
commit 0ee14ddf99
+6 -6
View File
@@ -7,9 +7,9 @@ services:
- no-new-privileges:true
user: "nonroot:nonroot"
ports:
- "8000:8000" # Do not change
- "8000:8000" # Do not change this unless you have modified it in the Docker image and rebuilt it.
environment:
- FRONTEND_URI=http://localhost:3000 # Do not change
- FRONTEND_URI=http://localhost:3000 # Do not change this unless you have modified it in the Docker image and rebuilt it.
- MONGODB_URI=${MONGODB_URI}
- SMTP_SERVICE=${SMTP_SERVICE}
- SMTP_EMAILADDR=${SMTP_EMAILADDR}
@@ -26,7 +26,7 @@ services:
depends_on:
- database
env_file:
- .exampleenv
- .env
frontend:
container_name: cropcompass-frontend
@@ -36,7 +36,7 @@ services:
- no-new-privileges:true
user: "nonroot:nonroot"
ports:
- "3000:3000" # Do not change
- "3000:3000" # Do not change this unless you have modified it in the Docker image and rebuilt it.
networks:
- cropcompass-ntwk
depends_on:
@@ -51,13 +51,13 @@ services:
environment:
- MONGO_INITDB_ROOT_USERNAME=${MONGODB_ROOT_USERNAME}
- MONGO_INITDB_ROOT_PASSWORD=${MONGODB_ROOT_PASSWORD}
- MONGO_INITDB_DATABASE=CropCompass # Do not change
- MONGO_INITDB_DATABASE=CropCompass # Do not change this unless you have modified it in the Docker image and rebuilt it.
networks:
- cropcompass-ntwk
volumes:
- ./db:/data/db
env_file:
- .exampleenv
- .env
model:
container_name: cropcompass-model