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
/run/buildkit
The following /etc/buildkit/buildkitd.toml configuration is useless in BuildKit v0.13 (beta) because /run/buildkit is not accessible for GID=1001
/etc/buildkit/buildkitd.toml
[grpc] gid=1001
v0.12.5 (works):
$ ls -ldn /run/buildkit/ drwxrwx--- 2 0 1001 60 Feb 3 16:31 /run/buildkit/ $ ls -ln /run/buildkit/buildkitd.sock srw-rw---- 1 0 1001 0 Feb 3 16:31 /run/buildkit/buildkitd.sock
v0.13.0-beta1, beta2, beta3 (broken):
$ ls -ldn /run/buildkit/ drwxrwx--- 2 0 0 80 Feb 3 16:32 /run/buildkit/ $ ls -ln /run/buildkit/buildkitd.sock ls: cannot access '/run/buildkit/buildkitd.sock': Permission denied
The text was updated successfully, but these errors were encountered:
Regression in a7690c5 set tracing socket path to runtime dir (#4078)
set tracing socket path to runtime dir
Sorry, something went wrong.
/run/buildkit is inaccessible for socket user
PR
Successfully merging a pull request may close this issue.
The following
/etc/buildkit/buildkitd.toml
configuration is useless in BuildKit v0.13 (beta) because/run/buildkit
is not accessible for GID=1001v0.12.5 (works):
v0.13.0-beta1, beta2, beta3 (broken):
The text was updated successfully, but these errors were encountered: