mirror of
https://github.com/containers/podman-compose.git
synced 2025-02-19 11:51:43 +01:00
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
|