Updating Allegra#
Docker Composer Based#
If you had Allegra installed on Docker using the Docker compose file docker-compose.yml
,
you can simply upgrade to the latest published version like this:
cd $HOME/allegra
export WORKDIR="$HOME/allegra"
wget https://www.alltena.com/files/downloads/latest-dist/core/allegra-latest-docker.tar -O allegra-docker.tar
docker compose pull
docker compose up -d
Done!
Manual Installation#
In case you had installed Allegra manually, proceed as follows:
Stop the Tomcat service:
service tomcat9 stop
Delete directory
$TOMCAT_HOME/webapps/allegra
and file$TOMCAT_HOME/webapps/allegra.war
.
cd $TOMCAT_HOME/webapps
rm -rf allegra allegra.war
Download the new Allegra WAR file from the Allegra Download page:
wget https://alltena.com/downloads/latest-dist/core/allegra-latest.war -O allegra.war
Start the Tomcat service with
service tomcat9 start