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
Describe the bug Current code results in:
2 error(s) decoding: * 'group_add[0]' expected type 'string', got unconvertible type 'int', value: '44' * 'group_add[1]' expected type 'string', got unconvertible type 'int', value: '155'
Editing it from:
group_add: # Video Group Id: 44 - 44 # Render Group Id: 155 - 155
to:
group_add: # Video Group Id: 44 - '44' # Render Group Id: 155 - '155'
Seems to resolve the issue
To Reproduce
sudo docker-compose up
Expected behavior Doesn't fail with that error.
The text was updated successfully, but these errors were encountered:
@brandonegbert After adding the following lines in Dockerfile (reference from ROCm-docker - quick-start.md). I could remove the whole group_add section.
group_add
See if that works for you.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Current code results in:
Editing it from:
to:
Seems to resolve the issue
To Reproduce
sudo docker-compose up
Expected behavior
Doesn't fail with that error.
The text was updated successfully, but these errors were encountered: