12 lines
348 B
Django/Jinja
12 lines
348 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
# Proxy settings
|
|
{% if dockerengine_http_proxy is defined %}
|
|
HTTP_PROXY={{ dockerengine_http_proxy }}
|
|
{% endif %}
|
|
{% if dockerengine_https_proxy is defined %}
|
|
HTTPS_PROXY={{ dockerengine_https_proxy }}
|
|
{% endif %}
|
|
{% if dockerengine_no_proxy is defined %}
|
|
NO_PROXY={{ dockerengine_no_proxy|join(',') }}"
|
|
{% endif %}
|