mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-08 19:57:35 +01:00
51df34e7ae
Most of these files were defining a service, usually toward the end. These lines have been moved upward. Some components (mautrix-signal, mautrix-gmessages, etc.) were defining a service conditionally (only if metrics are exposed, etc). This was causing issues like these in the Traefik logs: > level=error msg="service \"matrix-mautrix-twitter\" error: port is missing" providerName=docker container=matrix-mautrix-twitter-..
42 lines
2.1 KiB
Django/Jinja
42 lines
2.1 KiB
Django/Jinja
{% if matrix_mx_puppet_slack_container_labels_traefik_enabled %}
|
|
traefik.enable=true
|
|
|
|
{% if matrix_mx_puppet_slack_container_labels_traefik_docker_network %}
|
|
traefik.docker.network={{ matrix_mx_puppet_slack_container_labels_traefik_docker_network }}
|
|
{% endif %}
|
|
|
|
traefik.http.services.matrix-mx-puppet-slack.loadbalancer.server.port={{ matrix_mx_puppet_slack_appservice_address }}
|
|
|
|
{% if matrix_mx_puppet_slack_container_labels_public_endpoint_enabled %}
|
|
############################################################
|
|
# #
|
|
# Public #
|
|
# #
|
|
############################################################
|
|
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.rule={{ matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_rule }}
|
|
|
|
{% if matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_priority | int > 0 %}
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.priority={{ matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_priority }}
|
|
{% endif %}
|
|
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.service=matrix-mx-puppet-slack
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.entrypoints={{ matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_entrypoints }}
|
|
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.tls={{ matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_tls | to_json }}
|
|
{% if matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_tls %}
|
|
traefik.http.routers.matrix-mx-puppet-slack-public.tls.certResolver={{ matrix_mx_puppet_slack_container_labels_public_endpoint_traefik_tls_certResolver }}
|
|
{% endif %}
|
|
|
|
############################################################
|
|
# #
|
|
# /Public #
|
|
# #
|
|
############################################################
|
|
{% endif %}
|
|
|
|
|
|
{% endif %}
|
|
|
|
{{ matrix_mx_puppet_slack_container_labels_additional_labels }}
|