You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -111,13 +111,13 @@ addDatabaseIndex () {
111
111
startContainers () {
112
112
echo""
113
113
export IDM_HTTPS_ENABLED="$1"
114
-
docker-compose --log-level ERROR -p fiware up -d --remove-orphans
114
+
docker compose -p fiware up -d --remove-orphans
115
115
echo""
116
116
}
117
117
118
118
stoppingContainers () {
119
-
echo"Stopping containers"
120
-
docker-compose --log-level ERROR -p fiware down -v --remove-orphans
119
+
echo"Stopping running containers"
120
+
docker compose -p fiware down -v --remove-orphans
121
121
}
122
122
123
123
command="$1"
@@ -128,7 +128,7 @@ case "${command}" in
128
128
"start")
129
129
export$(cat .env | grep "#" -v)
130
130
stoppingContainers
131
-
echo -e "Starting six containers \033[1;34mOrion\033[0m, \033[1;36mIoT-Agent\033[0m,\033[1;31mKeyrock\033[0m, \033[1mTutorial\033[0m and \033[1mMongoDB\033[0m and \033[1mMySQL\033[0m databases."
131
+
echo -e "Starting containers: \033[1;34mOrion\033[0m, \033[1;36mIoT-Agent\033[0m,\033[1;31mKeyrock\033[0m, \033[1mTutorial\033[0m and \033[1mMongoDB\033[0m and \033[1mMySQL\033[0m databases."
132
132
echo -e "- \033[1;34mOrion\033[0m is the context broker"
133
133
echo -e "- \033[1;36mIoT-Agent\033[0m is configured for the UltraLight Protocol"
134
134
echo -e "- \033[1mTutorial\033[0m acts as a series of dummy IoT Sensors over HTTP"
0 commit comments