mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-09 04:41:36 +01:00
It may not be obvious to everyone what configuring subordinate user IDs and subordinate group IDs means in practice, so link the wiki article where the steps required to accomplish this are documented.
12 lines
289 B
Bash
12 lines
289 B
Bash
#!/bin/sh
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* For running rootless Podman you need to:
|
|
* - configure subordinate user ids (/etc/subuid) and subordinate group ids (/etc/subgid),
|
|
* - mount the control groups: \`rc-service cgroups start\`.
|
|
*
|
|
* More information: https://wiki.alpinelinux.org/wiki/Podman
|
|
*
|
|
EOF
|