@ -26,7 +26,7 @@ function additionalComposeArgs() {
ADDITIONAL_COMPOSE_ARGS = "-f docker-compose.hybrid.yml"
; ;
*)
echo " Unknown DATABASE value specified: ' ${ DATABASE } '. Should be either postgres or hybrid. " >& 2
echo " Unknown DATABASE value specified in the .env file : ' ${ DATABASE } '. Should be either ' postgres' or ' hybrid' . " >& 2
exit 1
esac
echo $ADDITIONAL_COMPOSE_ARGS
@ -55,7 +55,7 @@ function additionalComposeQueueArgs() {
ADDITIONAL_COMPOSE_QUEUE_ARGS = "-f docker-compose.service-bus.yml"
; ;
*)
echo " Unknown Queue service value specified: ' ${ TB_QUEUE_TYPE } '. Should be either kafka or confluent or aws-sqs or pubsub or rabbitmq or service-bus. " >& 2
echo " Unknown Queue service TB_QUEUE_TYPE value specified in the .env file : ' ${ TB_QUEUE_TYPE } '. Should be either ' kafka' or ' confluent' or ' aws-sqs' or ' pubsub' or ' rabbitmq' or ' service-bus' . " >& 2
exit 1
esac
echo $ADDITIONAL_COMPOSE_QUEUE_ARGS
@ -85,7 +85,7 @@ function additionalComposeCacheArgs() {
CACHE_COMPOSE_ARGS = "-f docker-compose.redis-cluster.yml"
; ;
*)
echo " Unknown CACHE value specified: ' ${ CACHE } '. Should be either redis or redis-cluster. " >& 2
echo " Unknown CACHE value specified in the .env file : ' ${ CACHE } '. Should be either ' redis' or ' redis-cluster' . " >& 2
exit 1
esac
echo $CACHE_COMPOSE_ARGS
@ -102,7 +102,7 @@ function additionalStartupServices() {
ADDITIONAL_STARTUP_SERVICES = " $ADDITIONAL_STARTUP_SERVICES postgres cassandra "
; ;
*)
echo " Unknown DATABASE value specified: ' ${ DATABASE } '. Should be either postgres or hybrid. " >& 2
echo " Unknown DATABASE value specified in the .env file : ' ${ DATABASE } '. Should be either ' postgres' or ' hybrid' . " >& 2
exit 1
esac
@ -115,7 +115,7 @@ function additionalStartupServices() {
ADDITIONAL_STARTUP_SERVICES = " $ADDITIONAL_STARTUP_SERVICES redis-node-0 redis-node-1 redis-node-2 redis-node-3 redis-node-4 redis-node-5 "
; ;
*)
echo " Unknown CACHE value specified: ' ${ CACHE } '. Should be either redis or redis-cluster. " >& 2
echo " Unknown CACHE value specified in the .env file : ' ${ CACHE } '. Should be either ' redis' or ' redis-cluster' . " >& 2
exit 1
esac