The document describes the process of upgrading the Webitel server version 3.5 to version 3.6.3.

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)
docker volume rm $(docker volume ls -q)
chown -R 1000:1000 /opt/webitel/elasticsearch5

Update basic Linux packages:

sudo apt update
sudo apt -y upgrade
curl -L "https://github.com/docker/compose/releases/download/1.12.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.6.3

export WEBITEL_VERSION="3.6.3"

Refresh Webitel:

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


Launch server

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

Webitel updated!

  • No labels