deployment: Typo, forgot to use scale argument in docker-compose up

pull/780/head
cruizba 2023-03-08 18:15:18 +01:00
parent 7a8f7fb5d1
commit 4e3f241c13
1 changed files with 2 additions and 2 deletions

View File

@ -270,8 +270,8 @@ start_openvidu() {
docker-compose up -d \
$(if [ "${COTURN_IN_MEDIA_NODES}" == "true" ]; then echo '--scale coturn=0'; fi) \
$(if [ "${RUN_LOCAL_FILEBEAT}" == "true" ]; then echo 'filebeat'; fi) \
$(if [ "${RUN_LOCAL_METRICBEAT}" == "true" ]; then echo 'metricbeat'; fi)
$(if [ "${RUN_LOCAL_FILEBEAT}" == "true" ]; then echo '--scale filebeat=0'; fi) \
$(if [ "${RUN_LOCAL_METRICBEAT}" == "true" ]; then echo '--scale metricbeat=0'; fi)
}
usage() {