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:
This comprehensive suite provides the necessary tools to guide your software projects from initial planning to final deployment.
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-stoppedMYSQL_ROOT_PASSWORD=secure_root_password_hereAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago