WBO logo

WBO

Real-time collaborative online whiteboard

Alternative to: Miro, FigJam


About

WBO (Whitebophir) is an online collaborative whiteboard that lets many users draw simultaneously on a large, persistent virtual board. Updates sync in real time across every connected user, with no account required, making it a lightweight self-hosted alternative to commercial whiteboarding tools for art, teaching, and design collaboration.

WBO Docker Compose example

Self-host WBO on your own server, homelab, or VPS starting from this Docker Compose example. It runs WBO in Docker containers using the official lovasoa/wbo: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:
  wbo:
    image: lovasoa/wbo:latest
    restart: unless-stopped
    environment:
      # How WBO reads the client IP when running behind a reverse proxy or CDN.
      # Options: remoteAddress, X-Forwarded-For, Forwarded, CF-Connecting-IP
      WBO_IP_SOURCE: "X-Forwarded-For"
    volumes:
      - data:/opt/app/server-data

volumes:
  data:

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