diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5e22a1f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +id_rsa.pub diff --git a/README.md b/README.md index 3fadbae..bd19e1e 100644 --- a/README.md +++ b/README.md @@ -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 +docker run --rm -p 80:80/tcp -p 1935:1935 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h ~~~ Make sure you provide the host IP of the server on which you run the docker command. Once running, you can navigate to `http://` to access your BigBlueButton server. diff --git a/restart.sh b/restart.sh deleted file mode 100755 index b92334e..0000000 --- a/restart.sh +++ /dev/null @@ -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` diff --git a/setup.sh b/setup.sh index 2bfa220..f14da70 100755 --- a/setup.sh +++ b/setup.sh @@ -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