File tree Expand file tree Collapse file tree
roles/generate-jenkins/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -150,6 +150,15 @@ Containers are configured using parameters passed at runtime (such as those abov
150150{% if readonly_supported is defined and readonly_supported %}
151151| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
152152{% endif %}
153+ {% if cap_add_param %}
154+ {% for item in cap_add_param_vars %}
155+ | `--cap-add={{ item.cap_add_var }}` | {{ item.desc }} |
156+ {% endfor %}
157+ {% endif %}
158+ {% if opt_cap_add_param %}
159+ {% for item in opt_cap_add_param_vars %}
160+ | `--cap-add={{ item.cap_add_var }}` | {{ item.desc }} |
161+ {% endfor %}
153162{% if nonroot_supported is defined and nonroot_supported %}
154163| `--user=1000:1000` | Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). |
155164{% endif %}
You can’t perform that action at this time.
0 commit comments