Razzia logo

Razzia

Self-hosted, open-source quiz platform for smaller events

Alternative to: kahoot

Razzia screenshotRazzia screenshot

Razzia is a straightforward, open-source quiz platform for hosting live trivia at smaller events. A host runs the game from a manager room while players join with a PIN code and answer synchronized questions from their own devices. It supports custom quizzes, image-based questions, and even physical buzzers over a documented WebSocket protocol.

Razzia Docker Compose example

Self-host Razzia on your own server, homelab, or VPS starting from this Docker Compose example. It runs Razzia in Docker containers using the official ralex91/razzia:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  razzia:
    image: ralex91/razzia:latest
    restart: unless-stopped
    volumes:
      - config:/app/config

volumes:
  config:

Prefer a managed setup? WinterFlow installs, configures, and updates Razzia for you using this same Docker Compose configuration.