Taiga

Taiga - Project management platform

9000
Default Port
5
Services
25.5/20
Complexity
High
Memory Usage
Configuration

Installation Command

blastdock init taiga

Template Overview

Everything you need to deploy Taiga with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Taiga-back
taigaio/taiga-back:latest
Taiga-front
taigaio/taiga-front:latest
Postgres
postgres:13
Rabbitmq
rabbitmq:3-management
Redis
redis:6
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: High, Memory: High , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Taiga up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Taiga with:

Terminal
blastdock init taiga

Interactive mode:

Terminal
blastdock init taiga -i

What's Included

Taiga-back
Container service
Taiga-front
Container service
Postgres
Container service
Rabbitmq
Container service
Redis
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Taiga installation with these configuration options.

5
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Front Port

Frontend port

port
Default: 9000
Required: Yes

Back Port

Backend port

port
Default: 8000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Secret Key

Secret key

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Domain

Domain name

domain
Default: localhost
Required: Yes

Docker Compose

Complete Docker Compose configuration for Taiga deployment.

5
Services
1
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  postgres:
    image: postgres:13
    container_name: {{ project_name }}_postgres
    restart: unless-stopped
    environment:
      0: POSTGRES_DB=taiga
      1: POSTGRES_USER=taiga
      2: POSTGRES_PASSWORD={{ db_password }}
    volumes:
      - /var/lib/postgresql/data
    networks:
      - taiga_network

  rabbitmq:
    image: rabbitmq:3-management
    container_name: {{ project_name }}_rabbitmq
    restart: unless-stopped
    networks:
      - taiga_network

  redis:
    image: redis:6
    container_name: {{ project_name }}_redis
    restart: unless-stopped
    networks:
      - taiga_network

  taiga-back:
    image: taigaio/taiga-back:latest
    container_name: {{ project_name }}_taiga_back
    restart: unless-stopped
    depends_on:
      - postgres
      - rabbitmq
      - redis
    ports:
      - "8000"
    environment:
      0: POSTGRES_DB=taiga
      1: POSTGRES_USER=taiga
      2: POSTGRES_PASSWORD={{ db_password }}
      3: POSTGRES_HOST=postgres
      4: RABBITMQ_USER=guest
      5: RABBITMQ_PASS=guest
      6: RABBITMQ_HOST=rabbitmq
      7: RABBITMQ_VHOST=/
      8: TAIGA_SECRET_KEY={{ secret_key }}
      - TAIGA_SITES_DOMAIN={{ domain }}: {{ front_port }}
      9: TAIGA_SITES_SCHEME=http
      10: REDIS_HOST=redis
    networks:
      - taiga_network

  taiga-front:
    image: taigaio/taiga-front:latest
    container_name: {{ project_name }}_taiga_front
    restart: unless-stopped
    depends_on:
      - taiga-back
    ports:
      - "80"
    environment:
      - TAIGA_API_URL=http: //{{ domain }}:{{ back_port }}/api/v1/
      - TAIGA_WEBSOCKETS_URL=ws: //{{ domain }}:{{ back_port }}/events
    networks:
      - taiga_network

volumes:
  postgres_data:
    driver: local

networks:
  taiga_network:
    driver: bridge