mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-06-19 11:27:11 +02:00
Reduced parmaeters for starting BigBlueButton
This commit is contained in:
parent
4ce9aa4210
commit
a73e659071
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
id_rsa.pub
|
@ -12,7 +12,7 @@ docker build -t bigbluebutton .
|
|||||||
Here we called the BigBlueButton container `bigbluebutton`. To run BigBlueButton in Docker, run the command
|
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.
|
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.
|
||||||
|
19
restart.sh
19
restart.sh
@ -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`
|
|
12
setup.sh
12
setup.sh
@ -240,16 +240,16 @@ export KURENTO_LOGS_PATH=$DAEMON_LOG
|
|||||||
|
|
||||||
cat << HERE
|
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
|
host: $HOST
|
||||||
Secret: $SECRET
|
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
|
http://mconf.github.io/api-mate/#server=http://$HOST/bigbluebutton/&sharedSecret=$SECRET
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user