Switched to install 2.5 by default

2.5 is the version of BBB [a major part of] the core group of developers are working on at the moment
This commit is contained in:
Anton Georgiev 2022-02-03 09:05:43 -05:00 committed by GitHub
parent 438093d495
commit 5bd86bc77d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,8 @@ Create a script in your home directory named `create_bbb.sh` with the following
#!/bin/bash
NAME="bbb-dev-01" # change here if you want a different name
HOSTNAME="${NAME}.test"
IMAGE=imdt/bigbluebutton:2.4.x-develop
# IMAGE=imdt/bigbluebutton:2.4.x-develop # (for 2.4 development)
IMAGE=imdt/bigbluebutton:2.5.x-develop # (for 2.5 development)
# retag the commit to force a lookup but keep in cache
docker image inspect $IMAGE &>/dev/null && ( docker image tag $IMAGE $IMAGE-previous ; docker image rm $IMAGE )