[TASK] change taiga templates (#242)
* [TASK] change taiga templates * [TASK] remove config files
This commit is contained in:
committed by
Bill Maxwell
parent
ec03b08289
commit
31b91bc31a
@@ -1,18 +1,45 @@
|
||||
postgres:
|
||||
image: postgres
|
||||
image: postgres
|
||||
environment:
|
||||
- POSTGRES_DB=taiga
|
||||
- POSTGRES_USER=taiga
|
||||
- POSTGRES_PASSWORD=password
|
||||
volumes:
|
||||
- ${DATABASE}:/var/lib/postgresql/data
|
||||
|
||||
taigaback:
|
||||
image: ipedrazas/taiga-back
|
||||
links:
|
||||
- postgres:postgres
|
||||
ports:
|
||||
- "8000:8000"
|
||||
rabbit:
|
||||
image: rabbitmq:3
|
||||
hostname: rabbit
|
||||
|
||||
taigafront:
|
||||
image: ipedrazas/taiga-front
|
||||
links:
|
||||
- taigaback:taiga-back
|
||||
ports:
|
||||
- "80:80"
|
||||
environment:
|
||||
- "API_NAME=boot2docker"
|
||||
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
|
||||
Reference in New Issue
Block a user