File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
17
17
stoppingContainers () {
18
- echo " Stopping containers"
19
- docker-compose --log-level ERROR -p fiware down -v --remove-orphans
18
+ echo " Stopping running containers"
19
+ docker compose -p fiware down -v --remove-orphans
20
20
}
21
21
22
22
displayServices () {
@@ -34,9 +34,9 @@ case "${command}" in
34
34
;;
35
35
" start" )
36
36
stoppingContainers
37
- echo -e " Starting eight containers including \033[1;35mFogFlow\033[0m, an \033[1mNGINX\033[0m instance, and \033[1mRabbitMQ\033[0m message broker."
37
+ echo -e " Starting containers: including \033[1;35mFogFlow\033[0m, an \033[1mNGINX\033[0m instance, and \033[1mRabbitMQ\033[0m message broker."
38
38
echo " "
39
- docker-compose --log-level ERROR -p fiware up -d --remove-orphans
39
+ docker compose -p fiware up -d --remove-orphans
40
40
displayServices
41
41
;;
42
42
" stop" )
@@ -47,7 +47,7 @@ case "${command}" in
47
47
export $( cat .env | grep " #" -v)
48
48
echo " Pulling Docker images"
49
49
docker pull curlimages/curl
50
- docker-compose --log-level ERROR -p fiware pull
50
+ docker compose -p fiware pull
51
51
;;
52
52
* )
53
53
echo " Command not Found."
You can’t perform that action at this time.
0 commit comments