container: Add podman secret support

This commit is contained in:
uumas
2024-11-11 11:51:22 +02:00
parent d1a4a3c711
commit eff2e908fb
4 changed files with 29 additions and 0 deletions

View File

@@ -30,6 +30,9 @@ Network={{ network }}.network
{% for port in container_publish_ports %}
PublishPort={{ port }}
{% endfor %}
{% for secret in container_secrets %}
Secret={{ secret.name }}
{% endfor %}
{% for key, value in container_env.items() %}
Environment={{ key }}={{ value }}
{% endfor %}