diff --git a/templates/docker-compose.yml.j2 b/templates/docker-compose.yml.j2 index fff58a6..b7b61dc 100644 --- a/templates/docker-compose.yml.j2 +++ b/templates/docker-compose.yml.j2 @@ -68,5 +68,11 @@ services: {% if item.shm_size is defined %} shm_size: {{ item.shm_size }} {% endif %} +{% if item.dns is defined %} + dns: +{% for item in item.dns %} + - {{ item }} +{% endfor %} +{% endif %} {% endif %} {% endfor %}