How to Add License Key to your Collaboration Server

1. Stop Existing Collaboration Server

Go to your existing exploratory directory and stop the Collaboration Server.

cd exploratory
docker-compose down

2. Add License Key in docker-compose.yml

If you already have obtained the license key, you can add it under the environment section, which can be found at around line 22, as follows. Note that you want to replace xxxxxxxxxx with your license key.

  exploratory:
    image: exploratory:<<version>>
    environment:
      - EXPL_ADMIN_FIRSTNAME=Admin
      - EXPL_ADMIN_LASTNAME=User
      - EXPL_ADMIN_EMAIL=hideaki@exploratory.io
      - EXPL_CRYPTOKEY=secretkey
      - EXPL_LICENSEKEY=xxxxxxxxxx

3. Restart Collaboration Server

Restart Collaboration Server with the following command from under your exploratory folder.

docker-compose up -d

Now, your Collaboration Server is up with your valid license!