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
@@ -22,8 +22,8 @@ loadData () {
22
22
}
23
23
24
24
stoppingContainers () {
25
-
echo"Stopping containers"
26
-
docker-compose --log-level ERROR -p fiware down -v --remove-orphans
25
+
echo"Stopping running containers"
26
+
docker compose -p fiware down -v --remove-orphans
27
27
}
28
28
29
29
displayServices () {
@@ -102,12 +102,12 @@ case "${command}" in
102
102
"start")
103
103
export$(cat .env | grep "#" -v)
104
104
stoppingContainers
105
-
echo -e "Starting four containers \033[1;34mOrion\033[0m, \033[1;36mIoT-Agent\033[0m, \033[1;30mTutorial\033[0m and a \033[1;30mMongoDB\033[0m database."
105
+
echo -e "Starting containers: \033[1;34mOrion\033[0m, \033[1;36mIoT-Agent\033[0m, \033[1;30mTutorial\033[0m and a \033[1;30mMongoDB\033[0m database."
106
106
echo -e "- \033[1;34mOrion\033[0m is the context broker"
107
107
echo -e "- \033[1;36mIoT-Agent\033[0m is configured for the UltraLight Protocol"
108
108
echo -e "- \033[1;30mTutorial\033[0m acts as a series of dummy IoT Sensors over HTTP"
109
109
echo""
110
-
docker-compose --log-level ERROR -p fiware up -d --remove-orphans
0 commit comments