1
0
mirror of https://github.com/coltoneshaw/CS-Repro-Mattermost.git synced 2025-12-23 18:11:34 +01:00

added rtcd service

This commit is contained in:
coltoneshaw
2024-04-02 16:27:04 -04:00
parent 0212df2766
commit c10d21eec2
3 changed files with 46 additions and 2 deletions

View File

@@ -45,13 +45,28 @@ run-mm-replicas:
@docker-compose up -d mattermost mattermost-2
@echo "Should be up and running. Go crazy."
run-rtcd:
@echo "Starting RTCD..."
@docker-compose up -d mattermost-rtcd
@docker exec -it cs-repro-mattermost mmctl config set PluginSettings.Plugins.com.mattermost.calls.rtcdserviceurl "http://mattermost-rtcd" --local
@docker exec -it cs-repro-mattermost mmctl plugin disable com.mattermost.calls --local
@docker exec -it cs-repro-mattermost mmctl plugin enable com.mattermost.calls --local
run-all: run run-db-replicas run-mm-replicas
start:
@echo "Starting the existing deployment..."
@docker-compose start
stop:
@echo "Stopping..."
@docker-compose stop
@echo "Done"
stop-rtcd:
@echo "Stopping RTCD..."
@docker-compose stop mattermost-rtcd
restart:
@docker-compose restart
@make check-mattermost