mirror of
https://github.com/containers/podman.git
synced 2025-12-05 12:52:12 +08:00
Add support for using multiple `Ulimit=` options in `.container` files. Before, only the last `Ulimit=` option was used in the podman command. Update podman-systemd.unit.5 docs to reflect this change. Add `test/e2e/quadlet/ulimit.container` to e2e tests. Signed-off-by: Paul Nettleton <k9@k9withabone.dev>
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
## assert-podman-final-args localhost/imagename
|
|
## assert-podman-args --ulimit nproc=1234:5678
|
|
## assert-podman-args --ulimit cpu=1234:5678
|
|
|
|
[Container]
|
|
Image=localhost/imagename
|
|
Ulimit=nproc=1234:5678
|
|
Ulimit=cpu=1234:5678
|