From 5bd86bc77d2410bce00d841810cd36b91c197f1d Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Thu, 3 Feb 2022 09:05:43 -0500 Subject: [PATCH] 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 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f40cf46..ac74619 100644 --- a/README.md +++ b/README.md @@ -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 )