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:36:28 +01:00
parent 106de6836b
commit 5b432fc0f1
2 changed files with 14 additions and 14 deletions

View File

@ -114,7 +114,7 @@ bitwardenrs_ldap_ssl: True
# @var bitwardenrs_ldap_search_base_dn: $ "_unset_" # @var bitwardenrs_ldap_search_base_dn: $ "_unset_"
bitwardenrs_ldap_search_filter: "(&(objectclass=*)(uid=*))" bitwardenrs_ldap_search_filter: "(&(objectclass=*)(uid=*))"
bitwardenrs_ldap_mail_field: "mail" bitwardenrs_ldap_mail_field: "mail"
bitwardenrs_ldap_sync_interval_seconds: "60" bitwardenrs_ldap_sync_interval_seconds: 60
bitwardenrs_ldap_sync_loop: True bitwardenrs_ldap_sync_loop: True
bitwardenrs_docker_compose_bin: /usr/local/bin/docker-compose bitwardenrs_docker_compose_bin: /usr/local/bin/docker-compose

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 %}