xoxys.docker_engine/templates/etc/sysconfig/docker.j2

12 lines
348 B
Plaintext
Raw Normal View History

2019-08-27 20:02:41 +00:00
{{ ansible_managed | comment }}
2018-12-12 22:25:36 +00:00
# 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 %}