forked from extern/podman-compose
2202e7f39b
- supports `ulimit: host` or other single value - As well as `ulimit: [nofile=5000, nproc=5000]` array - As well as `ulimit: {nofile: 5000, nproc: 5000}` dict Authored-by: Tyler Ramer <tramer@pivotal.io>
11 lines
165 B
Bash
Executable File
11 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "soft process limit"
|
|
ulimit -S -u
|
|
echo "hard process limit"
|
|
ulimit -H -u
|
|
echo "soft nofile limit"
|
|
ulimit -S -n
|
|
echo "hard nofile limit"
|
|
ulimit -H -n
|