Synchronised display of questions, answers and scores for a live quiz.
QuizInch runs as a web server. Installation is similar for Windows, MacOS (Apple silicon or Intel), or Linux.
Download and install Docker Desktop. See docs.docker.com for instructions.
A basic installation requires the addition of just one file on the server.
Create a directory quizinch
for the quiz server. On MacOS you might mkdir ~/quizinch && cd ~/quizinch
, and on Windows md C:\%HOMEPATH%\QuizInch && cd C:\%HOMEPATH%\QuizInch
.
Add docker-compose.yml
to the server directory. This Docker Compose file specifies the QuizInch and MariaDB software to be downloaded from Docker Hub, the settings to run them on the host system, and essential application parameters.
⇒ Docker Setup
Run docker compose up -d
. When issued the first time, this fetches QuizInch and MariaDB software from Docker Hub, and starts QuizInch. Then QuizInch sets up the quiz database, and creates the directory to hold media files (quizinch/media
). QuizInch will be restarted automatically whenever the host system is rebooted.
⇒ Commands
If needed, you can customize the quiz system: ⇒ Customisation
Connect to your server at http://localhost/
using a web browser and view the home page for the quiz system.