2
0
mirror of https://github.com/cmehay/pyentrypoint synced 2024-10-30 15:21:11 +00:00
pyentrypoint/tests/test_template.yml.tpl
2016-03-08 00:14:38 +01:00

45 lines
764 B
Smarty

All links:
{% for link in links.all %}
- {{link.uri}}
{% endfor %}
All links 1:
{% for link in links.test1 %}
- {{link.uri}}
{% endfor %}
Links 2 800:
- {{links.test2_800.uri}}
All links 2:
{% for link in links.test2 %}
- {{link.uri}}
{% endfor %}
All environ:
{% for link in links.all %}
{% for key in link.environ %}
{{key}}: {{link.environ[key]}}
{% endfor %}
{% endfor %}
All links 2 environ:
{% for link in links.test2 %}
{% for key in link.environ %}
{{key}}: {{link.environ[key]}}
{% endfor %}
{% endfor %}
All names:
{% for container in containers %}
{% for name in container.names %}
- {{name}}
{% endfor %}
{% endfor %}
ID:
{% for container in containers %}
- {{container.id}}
{% endfor %}