Update beckn-onix.sh

This commit is contained in:
Bhanu Prakash Reddy
2024-04-30 10:50:56 +05:30
committed by GitHub
parent 932cfa7d2a
commit cc64c54544

View File

@@ -57,15 +57,15 @@ start_support_services(){
#ignore orphaned containers warning #ignore orphaned containers warning
export COMPOSE_IGNORE_ORPHANS=1 export COMPOSE_IGNORE_ORPHANS=1
echo "${GREEN}................Installing MongoDB................${NC}" echo "${GREEN}................Installing MongoDB................${NC}"
docker-compose -f docker-compose-app.yml up -d mongo_db docker compose -f docker-compose-app.yml up -d mongo_db
echo "MongoDB installation successful" echo "MongoDB installation successful"
echo "${GREEN}................Installing RabbitMQ................${NC}" echo "${GREEN}................Installing RabbitMQ................${NC}"
docker-compose -f docker-compose-app.yml up -d queue_service docker compose -f docker-compose-app.yml up -d queue_service
echo "RabbitMQ installation successful" echo "RabbitMQ installation successful"
echo "${GREEN}................Installing Redis................${NC}" echo "${GREEN}................Installing Redis................${NC}"
docker-compose -f docker-compose-app.yml up -d redis_db docker compose -f docker-compose-app.yml up -d redis_db
echo "Redis installation successful" echo "Redis installation successful"
} }