IsPodmanRootless detects if Podman is running in rootless mode
()
| 105 | |
| 106 | // IsPodmanRootless detects if Podman is running in rootless mode |
| 107 | func IsPodmanRootless() bool { |
| 108 | return IsRootless() && IsPodman() |
| 109 | } |
| 110 | |
| 111 | // IsDockerRootless detects if Docker is running in rootless mode on Linux |
| 112 | // It must not be Podman or Lima, which can be rootless as well. |