Favicon of Tuleap

Tuleap

Manage software development and team collaboration with a single web-based solution. Build and deploy projects efficiently with end-to-end traceability.

This open-source application lifecycle management suite provides a single, web-based environment to improve software development and team collaboration. By bringing project managers, developers, and quality assurance teams into one workspace, the platform makes it easier to build, track, and deploy software projects.

Key benefits include:

  • End-to-end traceability: Track every aspect of application development to ensure complete visibility across the project lifecycle.
  • Unified collaboration: Connect project managers, developers, and quality managers in a single solution to reduce friction and improve communication.
  • Open-source flexibility: Leverage a libre architecture that allows teams to adapt the platform to their specific workflows.
  • Real-time development: Work collaboratively on source code and management tasks with real-time updates.

This comprehensive suite provides the necessary tools to guide your software projects from initial planning to final deployment.

Directory Structure

tuleap
tuleap-docker
mysql-data
tuleap-data
.env
docker-compose.yml

docker-compose.yml

services:
  web:
    image: tuleap/tuleap-community-edition:latest
    container_name: tuleap_web
    ports:
      - "80:80"
      - "443:443"
      - "2222:22"
    environment:
      - MYSQL_HOST=db
      - MYSQL_PORT=3306
      - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
      - TULEAP_FQDN=localhost
      - TULEAP_SYS_MAIL_DOMAIN=localhost
    volumes:
      - ./tuleap-data:/data
    depends_on:
      - db
    restart: unless-stopped

  db:
    image: mysql:8.0
    container_name: tuleap_db
    command: --default-authentication-plugin=mysql_native_password
    environment:
      - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
    volumes:
      - ./mysql-data:/var/lib/mysql
    restart: unless-stopped

.env

MYSQL_ROOT_PASSWORD=secure_root_password_here

Share:

Ad
Favicon

 

  
 

Similar to Tuleap

Favicon

 

  
  
Favicon

 

  
  
Favicon