Solved taiga bugs

This commit is contained in:
Kevin Veen-Birkenbach 2024-05-27 00:07:51 +02:00
parent 9871946e38
commit e6ed291f3d
2 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ SECRET_KEY="{{taiga_secret_key}}" # Please, change it to an unpredictable value
# Taiga's Database settings - Variables to create the Taiga database and connect to it # Taiga's Database settings - Variables to create the Taiga database and connect to it
POSTGRES_USER={{database_username}} # user to connect to PostgreSQL POSTGRES_USER={{database_username}} # user to connect to PostgreSQL
POSTGRES_PASSWORD={{peertube_database_password}} # database user's password POSTGRES_PASSWORD={{database_password}} # database user's password
# Taiga's SMTP settings - Variables to send Taiga's emails to the users # Taiga's SMTP settings - Variables to send Taiga's emails to the users
EMAIL_BACKEND = console # use an SMTP server or display the emails in the console (either "smtp" or "console") EMAIL_BACKEND = console # use an SMTP server or display the emails in the console (either "smtp" or "console")

View File

@ -37,7 +37,7 @@ x-volumes:
services: services:
{% include 'templates/docker/services/' + database_type + '.yml.j2' %} {% include 'templates/docker/services/' + database_type + '.yml.j2' %}
back: taiga-back:
image: taigaio/taiga-back:latest image: taigaio/taiga-back:latest
environment: *default-back-environment environment: *default-back-environment
volumes: *default-back-volumes volumes: *default-back-volumes
@ -80,7 +80,7 @@ services:
{% include 'templates/docker/container/networks.yml.j2' %} {% include 'templates/docker/container/networks.yml.j2' %}
taiga: taiga:
front: taiga-front:
image: taigaio/taiga-front:latest image: taigaio/taiga-front:latest
environment: environment:
TAIGA_URL: "${TAIGA_SCHEME}://${TAIGA_DOMAIN}" TAIGA_URL: "${TAIGA_SCHEME}://${TAIGA_DOMAIN}"
@ -93,7 +93,7 @@ services:
# volumes: # volumes:
# - ./conf.json:/usr/share/nginx/html/conf.json # - ./conf.json:/usr/share/nginx/html/conf.json
events: taiga-events:
image: taigaio/taiga-events:latest image: taigaio/taiga-events:latest
environment: environment:
RABBITMQ_USER: "${RABBITMQ_USER}" RABBITMQ_USER: "${RABBITMQ_USER}"
@ -141,9 +141,9 @@ services:
{% include 'templates/docker/container/networks.yml.j2' %} {% include 'templates/docker/container/networks.yml.j2' %}
taiga: taiga:
depends_on: depends_on:
- front - taiga-front
- back - taiga-back
- events - taiga-events
{% include 'templates/docker/compose/volumes.yml.j2' %} {% include 'templates/docker/compose/volumes.yml.j2' %}
static-data: static-data: