mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-24 09:11:09 +02:00
Solved taiga path bugs
This commit is contained in:
parent
e6db73c02a
commit
bc5059fe62
@ -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:
|
||||||
|
@ -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:
|
||||||
|
@ -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) }}"
|
Loading…
x
Reference in New Issue
Block a user