Reduced parmaeters for starting BigBlueButton

This commit is contained in:
Fred Dixon 2018-09-24 16:25:30 -05:00
parent 4ce9aa4210
commit a73e659071
4 changed files with 8 additions and 26 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
id_rsa.pub

View File

@ -12,7 +12,7 @@ docker build -t bigbluebutton .
Here we called the BigBlueButton container `bigbluebutton`. To run BigBlueButton in Docker, run the command
~~~
docker run --rm -p 80:80/tcp -p 443:443/tcp -p 1935:1935 -p 5066:5066 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h <HOST_IP>
docker run --rm -p 80:80/tcp -p 1935:1935 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h <HOST_IP>
~~~
Make sure you provide the host IP of the server on which you run the docker command. Once running, you can navigate to `http://<HOST_IP>` to access your BigBlueButton server.

View File

@ -1,19 +0,0 @@
#!/bin/bash -x
ID=`docker ps --format "{{.ID}}" --filter ancestor=bigbluebutton/b2`
if [ "$ID" != "" ]; then
docker stop $ID
fi
docker build -t bigbluebutton/b2 .
docker run -p 80:80/tcp -p 443:443/tcp -p 1935:1935/tcp -p 5066:5066/tcp -p 3478:3478/udp -p 3478:3478 -v /home/firstuser/dev/bigbluebutton/bigbluebutton-html5:/root/bigbluebutton-html5 --cap-add=NET_ADMIN bigbluebutton/b2 -h 192.168.0.130 > /dev/null
cat << HERE
docker exec -it `docker ps --format "{{.ID}}" --filter ancestor=bigbluebutton/b2` supervisorctl status
docker exec -it `docker ps --format "{{.ID}}" --filter ancestor=bigbluebutton/b2` /bin/bash
HERE
ID=`docker ps --format "{{.ID}}" --filter ancestor=bigbluebutton/b2`

View File

@ -240,16 +240,16 @@ export KURENTO_LOGS_PATH=$DAEMON_LOG
cat << HERE
BigBlueButton is now starting up at this address
BigBlueButton is now starting up. You can access the API demos here (use FireFox for WebRTC audio/video)
http://$HOST
http://$HOST/demo/demo1.jsp
For API calles, use
For API calls, use the following credentials
IP: $HOST
Secret: $SECRET
host: $HOST
secret: $SECRET
Here's a direct link for APIMate to make API calls
To interactively create API calls, here's a link to configure APIMate
http://mconf.github.io/api-mate/#server=http://$HOST/bigbluebutton/&sharedSecret=$SECRET