The document describes the process of updating the Webitel server version 3.6 to version 3.7.
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:
sudo apt update sudo apt -y upgrade curl -L "https://github.com/docker/compose/releases/download/1.15.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.7.1
export WEBITEL_VERSION="3.7.1"
Refresh Webitel:
cd /opt/orchestration git checkout master git pull git checkout v3.7.1 ./bin/bootstrap.sh pull
Launch server
./bin/bootstrap.sh up -d docker rmi $(docker images -q)
Webitel updated!