Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Always perform external backups before any server updates to prevent data loss and mitigate potential disruptions.

To update the Link using Docker you must: 

  1. Check the current version of the server (in the left low corner of the Login page in the Link web interface). 

  2. In the repository check if there are no update peculiarities for the version you want to install. If there is, read the attached manual and complete the instructions.

  3. Login to

...

  1. your server via SSH.

  2. Login as a superuser: sudo su, and enter the same password one more time.

  3. Follow the directory where your Link is:

    Code Block
    cd/home/link/
  4. Choose the correct type of Link server. If you use the Link:

    1. with

...

    1. SIP, but not using the domain name (e.g. http://176.215.90.19, http://3.111.25.45) perform:

      Code Block
      cd with-sip
    2. with

...

    1. SIP, and with domain name (e.g. https://preview.intercom.team) perform: 

      Code Block
      cd with-sip/with-web-proxy
    2. without

...

    1. SIP, and without domain (simply management features) perform:

      Code Block
      cd without-sip
    2. without

...

    1. SIP, but with domain (simply management features +

...

    1. SSL) perform:

      Code Block
      cd without-sip/with-web-proxy

...

Info

If you use the Link with-web-proxy, make sure, that the .env file in the current directory still contains your changes: vi .env
HTTPS_DOMAIN='your domain'
HTTPS_MODE=production
IMAGE=latest

...

  • Image Added

If there are no changes, please, write down your data.

...

  1. In case of updating from the Link version lower than 1.2.126, please, copy the .env file (as described in Step 4) and make changes after that: cp .env.example .env

  1. Stop the current Link server with the command:

Code Block
 docker-compose down

 It should be run in the directory with the corresponding type that you are use.

 8.

...

Update the docker-compose.yaml file with the command:

Code Block
git pull origin 
  1. Update installation images from which the new Link version will be deployed:

Code Block
docker-compose pull
  1. Start your updated Link server in some seconds: docker-compose up -d

Code Block
docker-compose up -d
  1. As a result new version will start functioning. Make sure that all of your containers are started and running properly:

Code Block
docker ps
  1. Login to the Link using the previous IP/domain.

...

...

(warning) If you have trouble running the Pull command because of the file on the machine with modifications that are not in Git, it is necessary to remove these changes and only then pull the update.

...

Try the following options:

  • in this directory, run the following command with a dot at the end followed by a space. This will clean up any changes

    Code Block
    git checkout.
  • for force reset perform: 

    Code Block
    git reset --hard