[TASK] change taiga templates (#242)
* [TASK] change taiga templates * [TASK] remove config files
This commit is contained in:
parent
ec03b08289
commit
31b91bc31a
@ -1,18 +1,45 @@
|
|||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
|
||||||
taigaback:
|
|
||||||
image: ipedrazas/taiga-back
|
|
||||||
links:
|
|
||||||
- postgres:postgres
|
|
||||||
ports:
|
|
||||||
- "8000:8000"
|
|
||||||
|
|
||||||
taigafront:
|
|
||||||
image: ipedrazas/taiga-front
|
|
||||||
links:
|
|
||||||
- taigaback:taiga-back
|
|
||||||
ports:
|
|
||||||
- "80:80"
|
|
||||||
environment:
|
environment:
|
||||||
- "API_NAME=boot2docker"
|
- POSTGRES_DB=taiga
|
||||||
|
- POSTGRES_USER=taiga
|
||||||
|
- POSTGRES_PASSWORD=password
|
||||||
|
volumes:
|
||||||
|
- ${DATABASE}:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
rabbit:
|
||||||
|
image: rabbitmq:3
|
||||||
|
hostname: rabbit
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:3
|
||||||
|
|
||||||
|
celery:
|
||||||
|
image: celery
|
||||||
|
links:
|
||||||
|
- rabbit
|
||||||
|
|
||||||
|
events:
|
||||||
|
image: kartoffeltoby/taiga-events:latest
|
||||||
|
links:
|
||||||
|
- rabbit
|
||||||
|
|
||||||
|
taiga:
|
||||||
|
image: kartoffeltoby/taiga:latest
|
||||||
|
restart: always
|
||||||
|
links:
|
||||||
|
- postgres
|
||||||
|
- events
|
||||||
|
- rabbit
|
||||||
|
- redis
|
||||||
|
environment:
|
||||||
|
- TAIGA_HOSTNAME=${DOMAIN}
|
||||||
|
- TAIGA_DB_HOST=postgres
|
||||||
|
- TAIGA_DB_NAME=taiga
|
||||||
|
- TAIGA_DB_USER=taiga
|
||||||
|
- TAIGA_DB_PASSWORD=password
|
||||||
|
- HTTPS_SELF_DOMAIN=${DOMAIN}
|
||||||
|
- TAIGA_SSL=True
|
||||||
|
- TAIGA_SLEEP=10
|
||||||
|
volumes:
|
||||||
|
- ${DATA}:/usr/src/taiga-back/media
|
@ -1,10 +1,31 @@
|
|||||||
.catalog:
|
.catalog:
|
||||||
name: "Taiga"
|
name: "Taiga"
|
||||||
version: "v0.1-educaas1"
|
version: "v0.3"
|
||||||
description: "Project management platform for agile developers"
|
description: "Project management platform for agile developers"
|
||||||
uuid: taiga-0
|
uuid: taiga-0
|
||||||
minimum_rancher_version: v0.51.0
|
minimum_rancher_version: v0.51.0
|
||||||
questions:
|
questions:
|
||||||
|
- variable: "DOMAIN"
|
||||||
|
label: "Domain"
|
||||||
taiga:
|
description: "your taiga domain name"
|
||||||
|
required: true
|
||||||
|
default: taiga.test.de
|
||||||
|
type: "string"
|
||||||
|
- variable: "DATA"
|
||||||
|
label: "Storage"
|
||||||
|
description: "the path for the Storage"
|
||||||
|
required: true
|
||||||
|
default: /home/taiga/data
|
||||||
|
type: "string"
|
||||||
|
- variable: "DATABASE"
|
||||||
|
label: "DB Storage"
|
||||||
|
description: "the path for the DB Storage"
|
||||||
|
required: true
|
||||||
|
default: /home/taiga/db
|
||||||
|
type: "string"
|
||||||
|
- variable: "CONF"
|
||||||
|
label: "Config Storage"
|
||||||
|
description: "the path for the Config Storage"
|
||||||
|
required: true
|
||||||
|
default: /home/taiga/conf
|
||||||
|
type: "string"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: Taiga
|
name: Taiga
|
||||||
description: |
|
description: |
|
||||||
Project management platform for agile developers
|
Project management platform for agile developers
|
||||||
version: v0.1-educaas1
|
version: v0.3
|
||||||
category: Agile
|
category: Agile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user