File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Project name
2
+ COMPOSE_PROJECT_NAME = fiware
3
+
1
4
# Orion variables
2
5
ORION_PORT = 1026
3
6
ORION_VERSION = 3.1.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ loadData () {
23
23
24
24
stoppingContainers () {
25
25
echo " Stopping running containers"
26
- docker compose -p fiware down -v --remove-orphans
26
+ docker-compose down -v --remove-orphans
27
27
}
28
28
29
29
displayServices () {
@@ -107,7 +107,7 @@ case "${command}" in
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 -p fiware up -d --remove-orphans
110
+ docker-compose up -d --remove-orphans
111
111
waitForMongo
112
112
addDatabaseIndex
113
113
waitForOrion
@@ -123,7 +123,7 @@ case "${command}" in
123
123
export $( cat .env | grep " #" -v)
124
124
echo " Pulling Docker images"
125
125
docker pull curlimages/curl
126
- docker compose -p fiware pull
126
+ docker-compose pull
127
127
;;
128
128
* )
129
129
echo " Command not Found."
You can’t perform that action at this time.
0 commit comments