The document describes the process of upgrading the Webitel server from version 3.9 to version 3.10.

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.22.0/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.10.2

export WEBITEL_VERSION="3.10.2"

Refresh Webitel:

cd /opt/orchestration
git checkout master
git pull
git checkout v3.10.2
./bin/bootstrap.sh pull

Launch server

./bin/bootstrap.sh up -d
docker rmi $(docker images -q)

Clear browser cache and webitel updated!

  • No labels