-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
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
Rootless docker/podman support #160
Labels
Comments
One thing I had to do was update if [[ -e /dev/uinput ]]; then
permissions=$(stat -c "%a" /dev/uinput)
if [[ "$permissions" != "666" ]]; then
print_step_header "Ensure the default user has permission to r/w on input devices"
chmod 0666 /dev/uinput
else
print_step_header "User already has write permission on input devices"
fi
fi This got around the error when starting. To get nvidia visible to podman-compose: podman-compose --podman-run-args="--device=nvidia.com/gpu=all" up --force-recreate I still get errors though.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Is your feature request related to a problem?
No response
What is your feature request?
Hello,
I was wondering if there is a way to make this container work for rootless container environments.
From the documentation, it looks like we need to sudo.
My containers are all rootless so it would be nice to have Steam Headless support it.
Are there any workarounds?
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: