fix env format in compose file
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-01-19 23:10:06 +01:00
parent 6701107b79
commit 106de6836b
1 changed files with 13 additions and 13 deletions

View File

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