Qulaxy is a powerful test management system designed for modern development teams. Organize test cases, track execution, and deliver quality software faster.
Powerful features designed for modern QA teams
Organize and structure test cases with custom fields, tags, and hierarchical folders
Monitor test execution in real-time with live dashboards and instant notifications
Design workflows that match your team's processes with flexible configurations
Work together seamlessly with role-based access and team workspaces
Generate detailed reports with metrics, charts, and exportable formats
Connect with Jira, Slack, GitHub, and other tools via REST API
Get started with Docker in just a few simple steps
Download the latest Qulaxy image from Docker Hub
docker pull qulaxy/test-management:latest
Start Qulaxy with your preferred configuration
docker run -d -p 8080:8080 \
--name qulaxy \
-e DB_HOST=your-db-host \
qulaxy/test-management:latest
Open your browser and start managing tests
http://localhost:8080
For a complete setup with database and caching
version: '3.8'
services:
qulaxy:
image: qulaxy/test-management:latest
ports:
- "8080:8080"
environment:
- DB_HOST=postgres
- DB_NAME=qulaxy
- DB_USER=admin
- DB_PASSWORD=secure_password
- REDIS_HOST=redis
depends_on:
- postgres
- redis
restart: unless-stopped
postgres:
image: postgres:15-alpine
environment:
- POSTGRES_DB=qulaxy
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=secure_password
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:7-alpine
restart: unless-stopped
volumes:
postgres_data:
docker-compose up -d
Everything you need to master Qulaxy
Quick start guide and basic concepts
Read more →Environment variables and settings
Read more →Production deployment best practices
Read more →Complete REST API documentation
Read more →Themes, workflows, and custom fields
Read more →Authentication, authorization, and security
Read more →Self-hosted license - Deploy on your own infrastructure
Deploy on your infrastructure with Docker
License delivered instantly • 14 days trial period