Versions Compared

Key

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

...

Requirements

Docker

Docker Compose

Rogo ExamSys Docker

Running

See the readme file in the ExamSys docker repository for full details.

Quick start

...

Code Block
languagebash
export ROGOEXAMSYS_DOCKER_WWWROOT=<path to examsys directory on host machine>
export ROGOEXAMSYS_DOCKER_MYSQLROOT=<mysql root password>
export ROGOEXAMSYS_DOCKER_EXPOSE=1
bash rogoexamsys-compose.sh up -d

Get the IP Address of the web container as you will need it when specifcy the server host on rogo installation.

Code Block
languagebash
docker inspect rogo_web_1

Creating a settings.xml file in the config directory of $ROGO_DOCKER_WWWROOT and run the command line installer via docker-compose.

...

Info
titleInstalling NPM

ExamSys uses NPM version 6 (this will be automatically added is installed if you are using our Docker images)

NPM itself is installed in the docker image. To install the packages run:

Base:


npm install 


Tinymce:


cd plugins/texteditor/plugin_tinymce_texteditor
npm install

...