# Docker Upstart and SysVinit configuration file # Customize location of Docker binary (especially for development testing). DOCKER="<%= @config.docker_bin %>" # Use DOCKER_OPTS to modify the daemon startup options. DOCKER_OPTS="<%= @docker_daemon_opts %>" # 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 %> # This is also a handy place to tweak where Docker's temporary files go. <% if @config.tmpdir %> export TMPDIR="<%= @config.tmpdir %>" <% end %>