3e8f9986d1
Change-Id: Ie70db1b18a73528b1194e4fbcf53d09fed20f4a0 Implements: blueprint kolla-host
27 lines
844 B
Django/Jinja
27 lines
844 B
Django/Jinja
# Docker Upstart and SysVinit configuration file
|
|
|
|
#
|
|
# THIS FILE DOES NOT APPLY TO SYSTEMD
|
|
#
|
|
# Please see the documentation for "systemd drop-ins":
|
|
# https://docs.docker.com/engine/articles/systemd/
|
|
#
|
|
|
|
# Customize location of Docker binary (especially for development testing).
|
|
#DOCKERD="/usr/local/bin/dockerd"
|
|
|
|
# Use DOCKER_OPTS to modify the daemon startup options.
|
|
DOCKER_OPTS=""
|
|
{% if docker_storage_driver %}
|
|
DOCKER_OPTS="$DOCKER_OPTS --storage-driver={{ docker_storage_driver }}"
|
|
{% endif %}
|
|
{% if docker_registry %}
|
|
DOCKER_OPTS="$DOCKER_OPTS --insecure-registry {{ docker_registry }}"
|
|
{% endif %}
|
|
|
|
# If you need Docker to use an HTTP proxy, it can also be specified here.
|
|
#export http_proxy="http://127.0.0.1:3128/"
|
|
|
|
# This is also a handy place to tweak where Docker's temporary files go.
|
|
#export TMPDIR="/mnt/bigdrive/docker-tmp"
|