fix env format in compose file
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Robert Kaussow 2020-01-19 23:10:06 +01:00
parent 6701107b79
commit 106de6836b

View File

@ -105,23 +105,23 @@ services:
image: {{ bitwardenrs_ldap_image }} image: {{ bitwardenrs_ldap_image }}
restart: {{ bitwardenrs_ldap_restart_policy }} restart: {{ bitwardenrs_ldap_restart_policy }}
environment: environment:
bitwardenrs_ldap_bitwarden_url: "{{ bitwardenrs_ldap_bitwarden_url }}" - BITWARDENRS_LDAP_BITWARDEN_URL="{{ bitwardenrs_ldap_bitwarden_url }}"
bitwardenrs_ldap_bitwarden_admin_token: "{{ bitwardenrs_ldap_bitwarden_admin_token }}" - BITWARDENRS_LDAP_BITWARDEN_ADMIN_TOKEN="{{ bitwardenrs_ldap_bitwarden_admin_token }}"
bitwardenrs_ldap_host: "{{ bitwardenrs_ldap_host }}" - BITWARDENRS_LDAP_HOST="{{ bitwardenrs_ldap_host }}"
{% if bitwardenrs_ldap_scheme is defined and bitwardenrs_ldap_scheme %} {% if bitwardenrs_ldap_scheme is defined and bitwardenrs_ldap_scheme %}
bitwardenrs_ldap_scheme: "{{ bitwardenrs_ldap_scheme }}" - BITWARDENRS_LDAP_SCHEME="{{ bitwardenrs_ldap_scheme }}"
{% endif %} {% endif %}
bitwardenrs_ldap_ssl: "{{ bitwardenrs_ldap_ssl }}" - BITWARDENRS_LDAP_SSL="{{ bitwardenrs_ldap_ssl }}"
{% if bitwardenrs_ldap_port is defined and bitwardenrs_ldap_port %} {% if bitwardenrs_ldap_port is defined and bitwardenrs_ldap_port %}
bitwardenrs_ldap_port: "{{ bitwardenrs_ldap_port }}" - BITWARDENRS_LDAP_PORT="{{ bitwardenrs_ldap_port }}"
{% endif %} {% endif %}
bitwardenrs_ldap_bind_dn: "{{ bitwardenrs_ldap_bind_dn }}" - BITWARDENRS_LDAP_BIND_DN="{{ bitwardenrs_ldap_bind_dn }}"
bitwardenrs_ldap_bind_password: "{{ bitwardenrs_ldap_bind_password }}" - BITWARDENRS_LDAP_BIND_PASSWORD="{{ bitwardenrs_ldap_bind_password }}"
bitwardenrs_ldap_search_base_dn: "{{ bitwardenrs_ldap_search_base_dn }}" - BITWARDENRS_LDAP_SEARCH_BASE_DN="{{ bitwardenrs_ldap_search_base_dn }}"
bitwardenrs_ldap_search_filter: "{{ bitwardenrs_ldap_search_filter }}" - BITWARDENRS_LDAP_SEARCH_FILTER="{{ bitwardenrs_ldap_search_filter }}"
bitwardenrs_ldap_mail_field: "{{ bitwardenrs_ldap_mail_field }}" - BITWARDENRS_LDAP_MAIL_FIELD="{{ bitwardenrs_ldap_mail_field }}"
bitwardenrs_ldap_sync_interval_seconds: "{{ bitwardenrs_ldap_sync_interval_seconds }}" - BITWARDENRS_LDAP_SYNC_INTERVAL_SECONDS="{{ bitwardenrs_ldap_sync_interval_seconds }}"
bitwardenrs_ldap_sync_loop: "{{ bitwardenrs_ldap_sync_loop }}" - BITWARDENRS_LDAP_SYNC_LOOP="{{ bitwardenrs_ldap_sync_loop }}"
{% if bitwardenrs_ldap_memory_limit is defined %} {% if bitwardenrs_ldap_memory_limit is defined %}
mem_limit: {{ bitwardenrs_ldap_memory_limit }} mem_limit: {{ bitwardenrs_ldap_memory_limit }}
{% endif %} {% endif %}