The document describes the process of updating Webitel server version 3.10 to version 3.11.
Backup
Before you proceed to the upgrade, we recommend that you back up the current configuration:
/opt/orchestration/bin/bootstrap.sh backup
Update process
Delete all docker containers and update permissions:
sudo -s docker rm -f $(docker ps -aq)
Update basic Linux packages:
apt update apt -y upgrade curl -sSL https://get.docker.com/ | sh curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
In the / opt / orchestration / env / environment file, change the version of the webitel to 3.11.4
export WEBITEL_VERSION="3.11.4"
Update Webitel:
cd /opt/orchestration git checkout master git pull origin master git checkout v3.11.4 ./bin/bootstrap.sh pull
Launch server
./bin/bootstrap.sh up -d docker rmi $(docker images -q)
Clear browser cache and Webitel updated!