Skip to content

Releases: ironicbadger/ansible-role-docker-compose-generator

Adds memlock support to ulimits

06 May 18:03

Choose a tag to compare

e.g.

    ulimits:
      memlock:
        soft: -1
        hard: -1

Adds ulimit support

04 May 14:07

Choose a tag to compare

As described here, ulimits can now be configured via this role.

{% if container.ulimits is defined %}
    ulimits:
{% if container.ulimits.nproc is defined %}
      nproc: {{ container.ulimits.nproc }}
{% endif %}
{% if container.ulimits.nofile is defined %}
      nofile:
{% for param, value in container.ulimits.nofile.items() %}
        {{ param }}: {{ value }}
{% endfor %}
{% endif %}
{% endif %}

Adds CI to update Galaxy

27 Apr 21:29

Choose a tag to compare

1.0.1

Merge branch 'master' of github.com:ironicbadger/ansible-role-docker-…