You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
605 B

9 years ago
  1. # Docker Upstart and SysVinit configuration file
  2. # Customize location of Docker binary (especially for development testing).
  3. #DOCKER="/usr/local/bin/docker"
  4. # Use DOCKER_OPTS to modify the daemon startup options.
  5. {% if overlay_network_plugin is defined and overlay_network_plugin == "calico" %}
  6. DOCKER_OPTS="--bridge=cbr0 --iptables=false --ip-masq=false"
  7. {% endif %}
  8. # If you need Docker to use an HTTP proxy, it can also be specified here.
  9. #export http_proxy="http://127.0.0.1:3128/"
  10. # This is also a handy place to tweak where Docker's temporary files go.
  11. #export TMPDIR="/mnt/bigdrive/docker-tmp"