Self-Hosted Test Management

Modern Testing,
Simplified

Qulaxy is a powerful test management system designed for modern development teams. Organize test cases, track execution, and deliver quality software faster.

10k+
Test Cases Managed
500+
Active Projects
99.9%
Uptime

Everything You Need

Powerful features designed for modern QA teams

Test Case Management

Organize and structure test cases with custom fields, tags, and hierarchical folders

Real-Time Tracking

Monitor test execution in real-time with live dashboards and instant notifications

Custom Workflows

Design workflows that match your team's processes with flexible configurations

Team Collaboration

Work together seamlessly with role-based access and team workspaces

Advanced Reporting

Generate detailed reports with metrics, charts, and exportable formats

Easy Integration

Connect with Jira, Slack, GitHub, and other tools via REST API

Deploy in Minutes

Get started with Docker in just a few simple steps

1

Pull the Docker Image

Download the latest Qulaxy image from Docker Hub

docker pull qulaxy/test-management:latest
2

Run the Container

Start Qulaxy with your preferred configuration

docker run -d -p 8080:8080 \
--name qulaxy \
-e DB_HOST=your-db-host \
qulaxy/test-management:latest
3

Access Your Instance

Open your browser and start managing tests

http://localhost:8080

Using Docker Compose

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:
Run with: docker-compose up -d

Comprehensive Documentation

Everything you need to master Qulaxy

Simple, Transparent Pricing

Self-hosted license - Deploy on your own infrastructure

Ready to transform your testing?

Join hundreds of teams already using Qulaxy

Start Free Trial