Get Continuum running
in under 5 minutes
Start with the free tier — no account or licence required. Upgrade to Starter or Pro when your team needs more.
Requirements
Download the compose file
Everything you need is in one file. Place it in a new directory on your server.
Download docker-compose.ymlCreate your .env file
In the same directory, create a .env file. Generate a secure JWT secret with the command shown.
openssl rand -base64 32
Copy the output into your .env:
# Paste the openssl output here for each secret (run the command twice) JWT_SECRET=your-generated-secret FRONTEND_SECRET=your-generated-secret # The URL your team will access (your server IP or domain) FRONTEND_URL=http://your-server:82 # Port for the dashboard (default: 82) PORT=82 # Starter / Pro / Enterprise only — leave blank for Free LICENSE_KEY=
Start Continuum
Run this from the directory containing your compose file and .env.
docker compose up -d
The database is seeded with demo data automatically on first startup — no extra step required.
Open the dashboard
Navigate to your server address in a browser. That's it — Continuum is running.
http://your-server:82
Need help? Email support@selectred.com or see the advanced documentation (licence holders).