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

View File

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

View File

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