Taiga是一款免费开源项目管理系统,比较适用于中小型敏捷项目管理,支持Scrum和kanban两种board 模板来跟踪项目的进度,同时还提供了丰富的第三方应用集成支持,如:视频会议功能与Talky.io和Appear.in的第三方服务结合;与基于Web的版本控制存储库(如GitHub和Bitbucket)进行交互;以及实时聊天工具slack集成等. 具体详细介绍,请参见https://taiga.io/,我们就直接进入setup 环节
1.安装docker和docker-compose
yum -y install docker-compose //在用epel源的情况下
创建docker-compose.yml文件
version: '2'
services:
taiga:
image: benhutchins/taiga
restart: always
ports:
- 8043:80
# - 443:443 # To enable SSL, uncomment this line. See "Enable SSL" below.
depends_on:
- postgres
- postfix
# To enable taiga-events, uncomment the following lines:
# - events
# - rabbit
# - redis
environment:
# Hostname for your instance of Taiga. Required.
#TAIGA_HOSTNAME: IP or FQDN
TAIGA_HOSTNAME: 192.168.3.219
# Database variables. Required.
TAIGA_DB_HOST: postgres
TAIGA_DB_NAME: taigadb
TAIGA_DB_USER: taiga
TAIGA_DB_PASSWOR