Merge pull request #24 from mrwacky42/stop-grace-period

Support stop_grace_period
This commit is contained in:
Alex Kretzschmar 2024-03-14 16:09:29 -07:00 committed by GitHub
commit ec4acd18f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,5 +160,8 @@ services:
{% if container.restart is defined %}
restart: {{ container.restart }}
{% endif %}
{% if container.stop_grace_period is defined %}
stop_grace_period: {{ container.stop_grace_period }}
{% endif %}
{% endif %}
{% endfor %}