We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We typically want this to enable support for rootless container like solutions e.g. podman OOTB.
Requirements:
/etc/subuid
/etc/subgid
touch
usermod --add-subuids 1000000-1065535 --add-subgids 1000000-1065535 root
usermod --add-subuids 1065535-1065535 --add-subgids 1065535-1065535 $USER
users
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
We typically want this to enable support for rootless container like solutions e.g. podman OOTB.
Requirements:
/etc/subuid
and/etc/subgid
files exist, andtouch
them if they don't.usermod --add-subuids 1000000-1065535 --add-subgids 1000000-1065535 root
if necessaryusermod --add-subuids 1065535-1065535 --add-subgids 1065535-1065535 $USER
, per user inusers
groupThe text was updated successfully, but these errors were encountered: