Added docker compose files for Webhook, Sandbox and GCL. Also, updated the shell script with variables name for each docker file

This commit is contained in:
prasad-takale-eminds
2024-05-07 15:05:08 +05:30
parent ecfb28f14d
commit 8d76cb6697
6 changed files with 227 additions and 26 deletions

View File

@@ -12,15 +12,15 @@ start_container(){
#below function will start the MongoDB, Redis and RabbitMQ Services.
start_support_services(){
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 "${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 "${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"
}
# Main script starts here