Solved taiga path bugs

This commit is contained in:
Kevin Veen-Birkenbach 2025-07-21 10:56:55 +02:00
parent e6db73c02a
commit bc5059fe62
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
3 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,3 @@
version: "latest"
oidc: {}
# Taiga doesn't have a functioning oidc support at the moment
# See
@ -9,13 +8,15 @@ flavor: 'taigaio' # Potential flavors: robrotheram, taigaio
features:
matomo: true
css: false
port-ui-desktop: true
port-ui-desktop: true
oidc: false
central_database: true
docker:
services:
database:
enabled: true
taiga:
version: "latest"
csp:
flags:
script-src-elem:

View File

@ -2,7 +2,7 @@
taiga-back:
{% include 'roles/docker-container/templates/base.yml.j2' %}
image: {{taiga_image_backend}}:{{applications.taiga.version}}
image: "{{taiga_image_backend}}:{{ taiga_version }}"
volumes:
# These volumens will be used by taiga-back and taiga-async.
- static-data:/taiga-back/static
@ -34,7 +34,7 @@
taiga-async:
{% include 'roles/docker-container/templates/base.yml.j2' %}
image: {{taiga_image_backend}}:{{applications.taiga.version}}
image: "{{taiga_image_backend}}:{{ taiga_version }}"
entrypoint: ["/taiga-back/docker/async_entrypoint.sh"]
volumes:
# These volumens will be used by taiga-back and taiga-async.
@ -76,7 +76,7 @@
taiga:
taiga-front:
image: {{taiga_image_frontend}}:{{applications.taiga.version}}
image: "{{taiga_image_frontend}}:{{ taiga_version }}"
{% include 'roles/docker-container/templates/base.yml.j2' %}
{% include 'roles/docker-container/templates/networks.yml.j2' %}
taiga:

View File

@ -14,3 +14,5 @@ docker_pull_git_repository: true
settings_files:
- urls
- local
taiga_version: "{{ applications | get_app_conf(application_id, 'docker.services.taiga.version', True) }}"