metasploitable3/chef/cookbooks/docker/templates/default/sysconfig/docker.erb
2019-02-17 00:02:05 -06:00

14 lines
349 B
Plaintext
Executable File

# /etc/sysconfig/docker
# If you need Docker to use an HTTP proxy, it can also be specified here.
<% if @config.http_proxy %>
export http_proxy="<%= @config.http_proxy %>"
<% end %>
<% if @config.https_proxy %>
export https_proxy="<%= @config.https_proxy %>"
<% end %>
<% if @config.no_proxy %>
export no_proxy="<%= @config.no_proxy %>"
<% end %>